1.Ajax的核心知识
1.1 XMLHttpRequest对象
function loadName(){
var xmlHttp;
if(window.XMLHttpRequest){
xmlHttp = new XMLHttpRequest();
}else{
xmlHttp = new ActiveObject("Microsoft.XMLHTTP"); // IE 5 和 IE 6
}
}
1.2 XMLHttpRequest对象请求后台
open(method,url,async)
send()
method: get或者post
async(是否异步):true 或者 false
send(string(参数)) 使用post方式
1.2 XMLHttpRequest对象响应服务器
时间: 2024-10-26 22:32:20