這篇文章主要介紹了javascript創建createXmlHttpRequest對象的示例代碼。需要的朋友可以過來參考下,希望對大家有所幫助
代碼如下: var xmlHttp; function createXmlHttpRequest() { if(window.XMLHttpRequest) { xmlHttp=new XMLHttpRequest(); if(xmlHttp.overrideMimeType) { xmlHttp.overrideMimeType("text/xml"); } } else if(window.ActiveXObject) { try { xmlHttp=new ActiveXObject("Msxml2.XMLHTTP"); } catch(e) { xmlHttp=new ActiveXObject("Microsoft.XMLHTTP"); } } if(!xmlHttp) { window.alert("你的浏覽器不支持創建XMLhttpRequest對象"); } return xmlHttp; }