4

我正在使用 javascript 方法 getElementsByTagName("a") 来调用所有 'a' 标签并对其进行一些处理。该方法适用于 FF 和 Opera,但不适用于 Chrome 和 Safari。当我查看 Chrome 和 Safari 的调试工具时,他们说:“Uncaught TypeError: Cannot call method 'getElementsByTagName' of null”

为什么会这样,解决方法是什么?请问有人可以给我建议吗?

提前谢谢了。

这是代码:

function popUpSAPWindow(){
// Find all links in the page and put them into an array.
var linksInOrderLinesTable = document.getElementById("orderLinesTable").getElementsByTagName("a"); // The line doing the error
var linksLen = linksInOrderLinesTable.length;

// If the link text is 'SAP' then modify the attributes
for(var i = 0; i < linksLen; i++){
    if(linksInOrderLinesTable[i].innerHTML == "SAP"){
        // Store the 'href' value of each SAP link.
        var sapHref = linksInOrderLinesTable[i].href;

        // Modify the attributes of each SAP link.      
        linksInOrderLinesTable[i].setAttribute("href", "javascript:return false;");
        linksInOrderLinesTable[i].setAttribute("onclick", "sapNewWindow(\'" + sapHref + "\')");
    }
}

}

它适用于以下 HTML:

<table id="orderLinesTable" summary="List of orders made by customers that the administrator can pick and deal with">
<tr>
    <th>Status</th>
    <th>Basket id</th>
    <th>Order line id</th>
    <th>Product</th>
    <th>Company</th>
    <th>Catalogue</th>
    <th>Date</th>
    <th>Details</th>
</tr>
<tr>
    <td>Accepted</td>
    <td>236569</td>
    <td>207</td>
    <td>OS Master Map</td>
    <td>NHS</td>
    <td>Standard</td>
    <td>1 Aug 10</td>
    <td><a href="/orderLineDetails.html">Normal</a> <a href="/orderLineDetails.html">SAP</a></td>
</tr>
<tr>
    <td>New</td>
    <td>236987</td>
    <td>528</td>
    <td>Code-Point</td>
    <td>BT</td>
    <td>Standard</td>
    <td>9 Aug 10</td>
    <td><a href="/orderLineDetails.html">Normal</a> <a href="/orderLineDetails.html">SAP</a></td>
</tr>

但是当我在其他页面上时,它会给出提到的错误。

4

2 回答 2

3

问题是,当您在document.getElementById("orderLinesTable").getElementsByTagName("a")没有orderLinesTablegetElementById 的页面上调用时,将返回null。因此调用getElementsByTagNamenull产生错误。

这应该可以解决问题:

var orderLinesTable = document.getElementById("orderLinesTable");
var linksInOrderLinesTable = [];

if (orderLinesTable) { // only get the links when the table exists
    linksInOrderLinesTable = orderLinesTable.getElementsByTagName("a");
}
于 2010-08-11T15:50:43.877 回答
1

Safari 和 Chrome 都支持该方法。您使用它的对象可能无法始终如一地检索,因此它的计算结果为 null。检查你是如何抓住你正在调用它的对象的。

BTW .. 这不是 Javascript 方法,它是 DOM API 中的方法。

编辑:

document.getElementById("orderLinesTable")

提醒这是什么。它是空的吗?

于 2010-08-10T11:29:22.700 回答