摘要: function CreateXMLHttp() { var xmlhttp=null; if (window.ActiveXObject) { xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); } else if (window.XMLHttpRequest) { xmlhttp = new XMLHttpRequest(); } return xmlhttp; } 阅读全文
posted @ 2011-04-08 11:24 南阳·源 阅读(925) 评论(0) 推荐(0) 编辑