怎么创建通用的AJAX对象

怎么创建通用的AJAX对象


qq_遁去的一_1
浏览 382回答 2
2回答

智慧大石

判断服务器是否支持ajaxfunction tel() {var tel = false;try {tel = new XMLHttpRequest();} catch(e) {//针对ie浏览器try {tel = new ActiveXObject('Msxml2.XMLHTTP');//ie8} catch(e) {try {tel = new ActiveXObject('Microsoft.XMLHTTP');} catch(e) {alert('你的浏览器不支持ajax');}}}return tel;}方法二:function tel() {var tel = false;if(window.XMLHttpRequest) {tel = new XMLHttpRequest();} else {tel = new window.ActiveXObject('Microsoft.XMLHTTP');}return tel;}

拉莫斯之舞

function btn_click() {//创建XMLHttpRequest对象var xmlHttp = new XMLHttpRequest();//获取值var username = document.getElementById("txt_username").value;var age = document.getElementById("txt_age").value;//配置XMLHttpRequest对象xmlHttp.open("get", "action?user=" + <%=user%>,true);//设置回调函数xmlHttp.onreadystatechange = function () {if (xmlHttp.readyState == 4 && xmlHttp.status == 200) {document.getElementById("result").innerHTML = xmlHttp.responseText;}}//发送请求xmlHttp.send(null);}
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JQuery