2 回答
TA贡献1836条经验 获得超5个赞
对呀对呀对呀,自己写ajax呗。
jquery的也是js原生的ajax对象封装的啊。
要是不会写,偶送你一个
var xmlHttp;
//创建ajax请求的对象
function createXMLHttpRequest() {
if (window.ActiveXObject) {
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
}
elseif (window.XMLHttpRequest) {
xmlHttp = new XMLHttpRequest();
}
}
//回调函数
var okFunc = function(){
if(xmlHttp.readyState == 4) {
if(xmlHttp.status == 200) {
//$("#msg").html(xmlHttp.responseText);
}
}
}
var startAjax = function(){
createXMLHttpRequest();
if( !xmlHttp){
return alert('create failed');
}
xmlHttp.open("POST", "Test", true);
xmlHttp.onreadystatechange = okFunc;
xmlHttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
xmlHttp.send(document);
}
- 2 回答
- 0 关注
- 155 浏览
添加回答
举报