IEでステータス200を示す上記のコードしかし、FirefoxとChromeでは、クロスドメイン機能のためにステータス0になりました。Javaスクリプトを使用してこのクロスドメイン機能を克服する方法を誰かが助けることができますか?
質問する
301 次
if(window.XMLHttpRequest){xmlhttp = new XMLHttpRequest(); } else {// IE6、IE5のコードxmlhttp = new ActiveXObject( "Microsoft.XMLHTTP"); } xmlhttp.open( "GET"、 "http://finance.yahoo.com/d/quote.csve=.csv&s=^BSESN&f=nl1c2vgh&random=10",true); xmlhttp.send(null); xmlhttp.onreadystatechange = function(){if(xmlhttp.readyState == 4){window.alert(xmlhttp.status); }}