52,792
社区成员




function startRequest(){
xmlHttp = new XMLHttpRequest();
var theurl = "test.asp" + "?timeStamp=" + new Date().getTime();
xmlHttp.onreadystatechange = handleStateChange;
xmlHttp.open("post",theurl,true);
xmlHttp.setRequestHeader ("Content-Type", "application/x-www-form-urlencoded");
xmlHttp.send(a={"你好":1,"你很好":45});
}