摘要: var xmlHttp; function createxmlHttpRequest() { if (window.ActiveXObject) { xmlHttp = new ActiveXObject("Microsoft.XMLHTTP"); } else if (window.XMLHttpRequest) { xmlHttp=new XMLHttpRequest(); } ... 阅读全文
posted @ 2015-10-27 14:50 MasterC 阅读(160) 评论(0) 推荐(0) 编辑