2017-01-31 6 views
0

私はこの例を自分のサーバ上で動作させるためにhttp://www.w3schools.com/xml/tryit.asp?filename=tryajax_xml2を作成したいと思いますが、私はいつもresponseXML = nullを取得しています。 私は自分のサーバーにHTMLおよびXMLファイルをコピーして、ブラウザにしようとすると私が取得:responseXML = null XMLHttpRequestによるエラー

onabort:null 
    onerror:null 
    onload:null 
    onloadend:null 
    onloadstart:null 
    onprogress:null 
    onreadystatechange:() 
    ontimeout:null 
    readyState:4 
    response:"..." 
    responseText:"..." 
    responseType:"" 
    responseURL:"http://www.domainname.com/file.xml" 
    responseXML:null 
    status:200 
    statusText:"OK" 
    timeout:0 
    upload:XMLHttpRequestUpload 
    withCredentials:false 
    __proto__:XMLHttpRequest 

私はクローム、IEとOperaでそれをテストします。ファイルは同じディレクトリにあります。私は何が間違っていますか?

+0

実際のエラーが表示されるよう、いくつかのコードを示してください。 –

+0

上記のリンクとxmlファイルのコードをコピーします。localhostと同じテストを行った2つの異なるサーバーでエラーが発生します。Uncaught TypeError:nullのgetElementsByTagNameプロパティを読み取れません at myFunction(catalog.html:39) xhttp.onreadystatechange @ catalog.html:29 – Korl

答えて

0

作品!私の.xmlファイルには空白の最初の行があり、エラーを起こします。私はそれに気付かなかった。

関連する問題