create xmlhttprequest
摘要:
1 function createXHR() { 2 if (typeof XMLHttpRequest != "undefined") { 3 return new XMLHttpRequest(); 4 } else if (typeof ActiveXObject != "undefined") { 5 if (typeof arguments.callee.activeXString != "string") { 6 var versions = ["MSXML2.XMLH... 阅读全文
posted @ 2013-05-18 23:44 雷音 阅读(208) 评论(0) 推荐(0) 编辑