悬赏园豆:5
[已关闭问题]
<P><STRONG><FONT size=3>js 如何遍历XMLHttpRequest对象?</FONT></STRONG></P>
<P><script></P>
<P>//调用多个类似方法直到有方法被成功调用<BR>var Try=<BR>{<BR> these:function()<BR> { <BR> var returnValue;<BR> for(var i = 0;i < arguments.length;i++)<BR> { <BR> var temp=arguments[i]; <BR> try<BR> { <BR> returnValue=temp();<BR> break;<BR> }catch(e){alert('err')}<BR> }<BR> return returnValue;<BR> }<BR>}</P>
<P><BR>//1。获取xmlhttp对象<BR>var xmlhttp=Try.these<BR>( <BR> function(){ return new XMLHttpRequest() },<BR> function(){ return new ActiveXObject('Microsoft.XMLHTTP')},<BR> function(){ return new ActiveXObject('Msxml2.XMLHTTP'); } <BR>)||flase;</P>
<P><FONT color=#ff0000><FONT color=#ff0000>//2。<STRONG>遍历XMLHttpRequest对象</STRONG><BR></FONT>for (x in xmlhttp) { document.write(x+"<br>"); } <BR></FONT></script></P>
<P>在浏览器上一点反应都没有呀。。<STRONG>js 如何遍历XMLHttpRequest对象?</STRONG></P>