Ajax使用的是xmlhttp请求,向服务器发送请求传递参数也在xmlhttm请求中完成。 首先创造一个xmlhttp请求,使用函数 function createXMLHttpRequest(){ var xmlHttp; if(window.ActiveXObject){ xmlHttp = new ActiveXObject("Microsoft.XMLHTTP"); } else if(window.XMLHttpRequest){ xmlHttp = new XMLHttpRequest(); } ret…