1

私はこのコードを書いて、AJAX 経由で取得した XML ドキュメントから写真のリンクを動的に読み込みます。応答 XML を格納するグローバル変数 xDoc があり、それを他の関数で使用して、毎回ドキュメントをロードする必要がないようにしています。私はJavaScriptにかなり慣れていないので、詳細が素晴らしいことを覚えておいてください.

Chrome で「Uncaught TypeError: Undefined のメソッド 'getElementsByTagName' を呼び出せません」というエラーが表示され、他のブラウザーでも同様のエラー メッセージが表示されます。ただし、私のコードは引き続き FireFox、Chrome、および Safari で動作します。ただし、IE に関しては、すべてのバージョンが機能しません。何が間違っているのか、なぜ要素が未定義なのか理解できません。

エラー行は、以下のコードで明確にマークされています。これは「eProject.link = eProject.photo.getElementsByTagName("edit")[0].firstChild.data;」です。

私のXMLのデータ構造は次のとおりです。

<project>
  <stuff>
  <stuff>
  <photos>
     <photo>
       <stuff>
       <edit>
     </photo>
  </photos>
</project>

次に、これは JavaScript です。

// Initialize 
function init() {
    // Set the xml file 
    loadXMLDoc("../xml/featured.xml");
}
window.onload = init;

// Define xDoc global variable
var xDoc;
var proImages = new Array();

// Retrieve XML document as document object
function loadXMLDoc(url) {
    var req = null;
    try {
        req = new XMLHttpRequest();
        req.overrideMimeType("text/xml");
    }
    catch(e) {
        req = null;
    }
    if (req) {
        xDoc = null;
        req.open("GET", url, true);
        req.onreadystatechange = function() {
            if (req.readyState == 4) {
                if (req.status == 200) {
                    xDoc = req.responseXML;
                    if (xDoc && typeof xDoc.childNodes != "undefined" && xDoc.childNodes.length == 0) {
                        xDoc = null;
                    }
                    else {
                        eProject = xDoc.getElementsByTagName("project")[0];
                        eProject.id = eProject.getElementsByTagName("id")[0].firstChild.data;
                        getProject(eProject.id);
                    }
                }
            }
        }
        req.send(null);
    }
}



function getProject(id) {
count = xDoc.childNodes.length;
i = 0;
for (i; count; i = i + 1) {
    eProject = xDoc.getElementsByTagName("project")[i];
    eProject.id = eProject.getElementsByTagName("id")[0].firstChild.data;
    if (eProject.id == id) {

        // Remove old numbers
        cImages = document.getElementById("cImages");
        if (cImages.firstChild) {
            while (cImages.firstChild)
            {
                cImages.removeChild(cImages.firstChild);
            }
        }

        // Reset Array
        proImages.length = 0;

        eProject.photos = eProject.getElementsByTagName("photos")[0];
        eProject.phot = eProject.photos.getElementsByTagName("photo");
        pCount = eProject.phot.length;
        i = 0;
        for (i; pCount; i = i + 1) {
            /*
             * THIS IS WHERE THE ERROR IS
             */

            eProject.photo = eProject.phot[i];
            // This is the line of code that generates the error message
            eProject.link = eProject.photo.getElementsByTagName("edit")[0].firstChild.data;
            proImages[i] = eProject.link;
            dynamImg = document.getElementById('dynamImg');
            dynamImg.src = proImages[0];
            dynamImg.setAttribute('onclick', 'getNumImg(1)');
            nButton = document.createElement('button');
            nButtonTxt = document.createTextNode(i + 1);
            nButton.appendChild(nButtonTxt);
            nButton.type = "button";
            nButton.value = i;
            if (nButton.value == '0') {
                nButton.setAttribute('id', 'nButtonSelect');
            }
            nButton.setAttribute('onclick', 'getNumImg(' + i + ')');
            cImages.appendChild(nButton);
        }
        break;
    }
}

}

4

3 に答える 3

1

2つのループが互いに内側にあり、両方で「i」変数をイテレータとして使用しているというのは正しいですか?2番目のループで「j」を使用するべきではありませんか?

于 2011-08-05T17:32:09.660 に答える
1

これはforループで必要だと思いますfor (i; i < pCount; i = i + 1) {(に注意してくださいi <)。それ以外の場合は、pCountが定義されているかどうかを確認するだけで、無期限に実行されます。iにある要素の数より大きくなるとエラーになると思います。eProject.photその時点でeProject.photoは未定義になります。

于 2011-08-05T17:38:23.687 に答える