编程论坛 » Ajax论坛 » xmlhttp 在 firefox里不兼容吗?
中级会员
搜索更多相关主题的帖子: firefox xmlhttp 功能 在线
查看详细资料
TOP
版主
function Ajax() { var ajax=false; try { ajax = new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) { try { ajax = new ActiveXObject("Microsoft.XMLHTTP"); } catch (E) { ajax = false; } } if (!ajax && typeof XMLHttpRequest!='undefined') { ajax = new XMLHttpRequest(); } return ajax; }