js简单地发送一个请求

 

利用js发送简单GET的请求:

 

var xmlhttp;
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
    xmlhttp=new XMLHttpRequest();
} else {// code for IE6, IE5
    xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
                        xmlhttp.onreadystatechange=function() {
    if (xmlhttp.readyState==4 && xmlhttp.status==200) {
    document.getElementById("myDiv").innerHTML=xmlhttp.responseText;
    }
}

var urlstring = "http://test.jms.jimaisong.com/jms.do?m=infotimes&rid="+rid+"&cid="+cid;
xmlhttp.open("GET", urlstring, true);
xmlhttp.send();

 

posted @ 2015-04-29 18:44  Chocolate·Lee  阅读(838)  评论(0编辑  收藏  举报