\\设置浏览器
if(window.ActiveXObject){
xhr = new ActiveXObject("Microsoft.XML");}else if(window.XMLHttpRequest){
xhr = new XMLHttpRequest();
}
var url = "index.php?c=goods&a=init";xhr.open("POST",url,true);//设置提交方式
xhr.setRequestHeader("Content-Type","application/x-www-form-urlencoded");//这是post方式提交必不可少的
xhr.onreadystatechange = callback;
xhr.send("page=1");//传递的参数
function callback(){
if(xhr.readyState ==4){
if(xhr.status==200){
}
}
}
}
\\ajax其实就是这么点代码 直接改改参数就可以用的
作者:feilong_12 发表于2013-3-17 22:49:00 原文链接
阅读:65 评论:0 查看评论