AJAX成功加载之后,而网页的源码中却看不到加载的内容
我用AJAX将加载的列表页面显示在<divid="yy">1</div>这个层上但当点击列表页面的多选框后,在加载的页面点提交的时候,却获得不到列表的值,我在加载的页面查...
我用AJAX将加载的列表页面显示在 <div id="yy">1 </div>这个层上
但当点击列表页面的多选框后,在加载的页面点提交的时候,却获得不到列表的值,
我在加载的页面查看源文件的时候,只能看到 <div id="yy">1 </div>这个层,
却看不到加载的列表的源码,请问怎么才能加载列表的源码,实现提交的功能。
----------------------------------------------------------------------------------------------
http_request.onreadystatechange=processrequest;
http_request.open("get","carList.jsp?busGroup="+tt,false);
http_request.send(null);
}
function processrequest(){
if(http_request.readyState==4
if(http_request.status==200
var yy=unescape(http_request.responseText);
show(yy);
}
else
yy=unescape("错误!");
show(yy);
}
}
}
function show(text) {
document.getElementById("yy").innerHTML=text;
}
-------------------------------------------------------------------------------------------------
那我要实现提交怎么办啊
就是加载之后,是一个列表,列表有多选框,
我还要实现提交 展开
但当点击列表页面的多选框后,在加载的页面点提交的时候,却获得不到列表的值,
我在加载的页面查看源文件的时候,只能看到 <div id="yy">1 </div>这个层,
却看不到加载的列表的源码,请问怎么才能加载列表的源码,实现提交的功能。
----------------------------------------------------------------------------------------------
http_request.onreadystatechange=processrequest;
http_request.open("get","carList.jsp?busGroup="+tt,false);
http_request.send(null);
}
function processrequest(){
if(http_request.readyState==4
if(http_request.status==200
var yy=unescape(http_request.responseText);
show(yy);
}
else
yy=unescape("错误!");
show(yy);
}
}
}
function show(text) {
document.getElementById("yy").innerHTML=text;
}
-------------------------------------------------------------------------------------------------
那我要实现提交怎么办啊
就是加载之后,是一个列表,列表有多选框,
我还要实现提交 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询