首页 相关文章 JQuery与Ajax常用代码实现对比

JQuery与Ajax常用代码实现对比

传统ajax Code
代码如下:
script language="javascript"
var xmlHttp;
function createXMLHttpRequest(){
if(window.ActiveXObject)
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
else if(window.XMLHttpRequest)
xmlHttp = new XMLHttpRequest();
}
function startRequest(){
createXMLHttpRequest();
xmlHttp.open("GET","14-1.aspx",true);
xmlHttp.onreadystatechange = function(){
if(xmlHttp.readyState == 4 && xmlHttp.status == 200)
document.getElementById("target").innerHTML = xmlHttp.responseText; ...[ 查看全文 ]

2016-02-19 标签:

JQuery与Ajax常用代码实现对比的相关文章

手机页面
收藏网站 回到头部