首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > XML SOAP >

运用firefox xmlhttprequest同步的时候,无法加载数据

2012-10-26 
使用firefox xmlhttprequest同步的时候,无法加载数据使用firefox xmlhttprequest同步的时候,是不会onready

使用firefox xmlhttprequest同步的时候,无法加载数据
使用firefox xmlhttprequest同步的时候,是不会onreadystatechange事件的,但在IE下会触发,到firefox网站上查了下,发现这个方法要这么写
Javascript代码  收藏代码

oXmlHttp.open('GET', url,false);     oXmlHttp.send();     if ( oXmlHttp.status == 200 || oXmlHttp.status == 304 ){     IncludeJS( url, sId, oXmlHttp.responseText );     }     else{         alert( 'XML request error: ' + oXmlHttp.statusText + ' (' + oXmlHttp.status + ')' ) ;     }

它直接跟在send后面,在IE下也是可以的。

热点排行