/*! *首页访问量 */$(document).ready(function(){ var ips=returnCitySN["cip"]; // location.href="http://localhost:8088/htcmscjzx/indexfwl/create.action?ip="+ips; //var dizhis=returnCitySN["cname"]; var xmlhttp; var data; //Mozilla ,chmore浏览器(将XMLHttpRequest对象作为本地浏览器对象来创建) if(window.XMLHttpRequest){ //Mozilla 浏览器 xmlhttp = new XMLHttpRequest(); }else if(window.ActiveXObject) { //IE浏览器 //IE浏览器(将XMLHttpRequest对象作为ActiveX对象来创建) try{ xmlhttp = new ActiveXObject("Msxml2.XMLHTTP"); }catch(e){ try { xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); }catch(e){} } } var Url = "http://www.bjjrj.gov.cn:8088/htcms/indexfwl/create.action?ip="+ips; xmlhttp.open("GET", Url, true); xmlhttp.onreadystatechange = result; xmlhttp.send(data); function result(){ //alert(xmlhttp.readyState); if (xmlhttp.readyState == 4) { var response = xmlhttp.responseText; } } });