1、get用法
//参数后面带一个timeStamp,欺骗浏览器,每次都发送新的请求
var queryStr = "id=1&timeStamp=" + new Date().getTime();
// 参数直接带在url后面
xmlHttp.open("get", "SelectSV?" + queryStr, true);
xmlHttp.onreadystatechange = callBack;
xmlHttp.send(null);
2、post用法
var queryStr = "id=1&timeStamp=" + new Date().getTime();
xmlHttp.open("post", "SelectSV?", true);
// 重置头部,表单提交的方式
xmlHttp.setrequestheader("content-length",queryStr.length);
xmlHttp.setrequestheader("content-type","application/x-www-form-urlencoded");
xmlHttp.onreadystatechange = callBack;
// 两次编码解决中文乱码问题
xmlHttp.send(encodeURI(encodeURI(queryStr)));