get function get(URL, PARAMS) { var temp = document.createElement("form"); temp.method = "get"; temp.style.display = "none"; var data = "?"; for (var x in PARAMS) { data += x + "=" + PARAMS[x] + "&…
AJAX:Asynchronous Javascript and xml 异步,Js和Xml 交互式网页开发 不刷新页面,与服务器交互 详情请参照Jquery工具指南用在浏览器端的技术,无刷新,通过XmlHttpRequest访问页面纯js版---------- if(XmlHttpRequest){ //判断是否支持XmlHttpRequest xhr= new XmlHttpRequest(); // 创建XmlHttpRequest对象 } else{ xhr= new Activexob…