//獲取xmlHttp對象 function createXMLHttp() { var xmlhttp; //對於大多數瀏覽器適用 if (window.XMLHttpRequest) { xmlhttp = new XMLHttpRequest(); } else { //考慮瀏覽器的兼容性 xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); if (!xmlhttp) { xmlhttp = new ActiveXObject("Msxml2.XMLHTTP"); } } return xmlhttp; }