问题描述
为什么我创建了AcitveXObject以后,调用它的.open()方法,浏览器出现错误,提示找不到此属性和方法.
解决方案
解决方案二:
if(window.XMLHttpRequest){xmlObj=newXMLHttpRequest();}elseif(window.ActiveXObject){xmlObj=newActiveXObject("Microsoft.XMLHTTP");}else{return;}要判断浏览器
解决方案三:
varhttp_request;if(window.XMLHttpRequest){http_request=newXMLHttpRequest();if(http_request.overrideMimeType){http_request.overrideMimeType('text/xml');}}elseif(window.ActiveXObject){try{http_request=newActiveXObject("Msxml2.XMLHTTP");}catch(e){try{http_request=newActiveXObject("Microsoft.XMLHTTP");}catch(e){}}}
解决方案四:
UP
解决方案五:
www.cnblogs.com/ustbwuyi
解决方案六:
已经判断了浏览器了的,浏览器为IE,而且也创建好了对象,但是始终不行
解决方案七:
恩,晚上用下你的代码回去试试
时间: 2024-09-20 07:27:45