Ajax按需读取数据生成下级菜单

山有山的沉稳厚重,一年四季却能以不同的色彩风光展示山的美丽。活泼的有单调的一面,安静的有变换的色彩。静与动的搭配,单调与精彩的结合,也就组成了最美的风景。
jilian.htm

<scriptlanguage="javascript">
varhttp_request=false;
functionsend_request(url){//初始化,指定处理函数,发送请求的函数
http_request=false;
//开始初始化XMLHttpRequest对象
if(window.XMLHttpRequest){//Mozilla浏览器
http_request=newXMLHttpRequest();
if(http_request.overrideMimeType){//设置MIME类型
http_request.overrideMimeType("text/html");
}
}
elseif(window.ActiveXObject){//IE浏览器
try{
http_request=newActiveXObject("Xsxml2.XMLHTTP");
http_request.setRequestHeader("Content-Type","text/xml");
http_request.setRequestHeader("Content-Type","gb2312");
}
catch(e){
try{
http_request=newActiveXObject("Microsoft.XMLHTTP");
http_request.setRequestHeader("Content-Type","text/xml");
http_request.setRequestHeader("Content-Type","gb2312");
}
catch(e){
}
}
}
if(!http_request){//异常,创建对象实例失败
window.alert("不能创建XMLHttpRequest对象实例");
returnfalse;
}
http_request.onreadystatechange=processRequest;
//确定发送请求的方式和URL以及是否同步执行下段代码
http_request.open("GET",url,true);
http_request.send(null);
}
//处理返回信息的函数
functionprocessRequest(){
if(http_request.readyState==4){//判断对象状态
if(http_request.status==200){//信息已经成功返回,开始处理信息
document.getElementById(currentPos).innerHTML=http_request.responseText;
}
else{//页面不正常
alert("您所请求的页面有异常");
}
}
}
functionshowRoles(obj){
document.getElementById(obj).parentNode.style.display="";
document.getElementById(obj).innerHTML="正在读取数据..."
currentPos=obj;
send_request("jilian_data.asp?playPos="+obj);
}
</script> <tablewidth="200"border="0"cellspacing="0"cellpadding="0">
<tr>
<tdheight="20">
<arel="nofollow noopener noreferrer" href="javascript:void(0)"onclick="showRoles('pos_1')">经理室
</a>
</td>
</tr>
<trstyle="display:none">
<tdheight="20"id="pos_1"></td>
</tr>
<tr>
<tdheight="20">
<arel="nofollow noopener noreferrer" href="javascript:void(0)"onclick="showRoles('pos_2')">开发部</a>
</td>
</tr>
<trstyle="display:none">
<tdid="pos_2"height="20"></td>
</tr>
</td>
</table>

jilian_data.asp

<%@LANGUAGE="VBSCRIPT"CODEPAGE="936"%>
<%
playPos=request("playPos")
ifplayPos="pos_1"then
Response.Write("jingli<br>副总经理")
endif
ifplayPos="pos_2"then
Response.Write("总工程师<br>软件工程师")
endif
%>

到此这篇关于Ajax按需读取数据生成下级菜单就介绍到这了。烈火燃烧青春的血,冰水冻结年轻的骨,让新一代因残酷而傲立,因绚烂而精明,因瑰丽而传奇。更多相关Ajax按需读取数据生成下级菜单内容请查看相关栏目,小编编辑不易,再次感谢大家的支持!

您可能有感兴趣的文章
如何使用AJAX实现按需加载【推荐】

create-react-app使用antd按需加载的样式无效问题的解决

react配置antd按需加载的使用

react-router4按需加载(踩坑填坑)

详解在create-react-app使用less与antd按需加载