该楼层疑似违规已被系统折叠 隐藏此楼查看此楼
function startXMLHttp_D(){ //点击按钮
createXMLHttp();
if( xmlHttp != undefined ){
xmlHttp.open("get","C20.asp?id=&tab_id=&F_code=&act=1",true); //获取c20.asp数据
xmlHttp.send(null);
xmlHttp.onreadystatechange = doaction_;
}
createXMLHttp();
if( xmlHttp != undefined ){
xmlHttp.open("get","total.asp",true); //获取total.asp数据
xmlHttp.send(null);
xmlHttp.onreadystatechange = T_2;
}
}
function doaction_(){ //显示数据1
if(xmlHttp.readyState==4){
if(xmlHttp.status==200){
document.getElementById("content_").innerHTML=xmlHttp.responseText;
}}}
function T_2(){ //显示数据2
if(xmlHttp.readyState==4){
if(xmlHttp.status==200){
document.getElementById("content_2").innerHTML=xmlHttp.responseText;
}}}