双层ajax嵌套(可多层)用法实例
本文实例讲述了双层ajax嵌套(可多层)用法。分享给大家供大家参考。具体如下:
function addbus()
{
//清除a标签中的所有元素
// $("#s1").remove();
var chooseIdTypeOne =$("#chooseIdTypeOne2").find("option:selected").val();
$.ajax({
url : "/ftcms/changeProject.do?getOriginal&OriginalName="+chooseIdTypeOne,
data : null, // 参数
type : "post",
cache : false,
dataType : "json", //返回json数据
error: function(){
//document.getElementById("chooseIdTypeOnechdranone").options.length = 0;
alert('error');
},
success:onchangecal
});
}
function onchangecal(data){
var chooseIdTypeOne =$("#chooseIdTypeOne2").find("option:selected").val();
document.getElementById("chooseIdTypeOnechdranone2").options.length = 0; //清空原有的option
var str="请选择";
if(chooseIdTypeOne==1){
$.ajax({
url : "/ftcms/changeProject.do?getOriginal&OriginalName="+chooseIdTypeOne,
data : null, // 参数
type : "post",
cache : false,
dataType : "json", //返回json数据
error: function(){
//document.getElementById("chooseIdTypeOnechdranone").options.length = 0;
alert('error');
},
success:onchangecal
});
}
}
}
if(chooseIdTypeOne==2){
for(var i=0;i
str+=""+data[i].NAME+""
}
}
if(chooseIdTypeOne==3){
for(var i=0;i
str+=""+data[i].NAME+""
}
}
if(chooseIdTypeOne==4){
for(var i=0;i
str+=""+data[i].NAME+""
}
}
if(chooseIdTypeOne==5){
for(var i=0;i
str+=""+data[i].NAME+""
}
}
if(chooseIdTypeOne==6){
for(var i=0;i
str+=""+data[i].NAME+""
}
}
if(chooseIdTypeOne==7){
for(var i=0;i
str+=""+data[i].NAME+""
}
}
if(chooseIdTypeOne==8){
for(var i=0;i
str+=""+data[i].NAME+""
}
}
if(chooseIdTypeOne==9){
for(var i=0;i
str+=""+data[i].NAME+""
}
}
if(chooseIdTypeOne==10){
for(var i=0;i
str+=""+data[i].NAME+""
}
}
if(chooseIdTypeOne==11){
for(var i=0;i
str+=""+data[i].NAME+""
}
}
if(chooseIdTypeOne==12){
for(var i=0;i
str+=""+data[i].NAME+""
}
}
if(chooseIdTypeOne==13){
for(var i=0;i
str+=""+data[i].NAME+""
}
}
$("#chooseIdTypeOnechdranone2").html(str);
}
希望本文所述对大家的Ajax程序设计有所帮助。相关阅读:
MySQL下使用Inplace和Online方式创建索引的教程
使用Bootstrap框架制作查询页面的界面实例代码
Android开发从相机或相册获取图片裁剪
BootStrap智能表单实战系列(八)表单配置json详解
Android View如何测量
IOS简单实现瀑布流UICollectionView
JS和Jquery获取和修改label的值的示例代码
Android布局之LinearLayout自定义高亮背景的方法
Android获取SD卡上图片和视频缩略图的小例子
PHP中header函数的用法及其注意事项详解
使用CSS3制作饼状旋转载入效果的实例
新浪微博OAuth认证和储存的主要过程详解
python实现统计汉字/英文单词数的正则表达式
正则表达式不区分大小写以及解决思路的探索 .