它是什麼,我做錯了這裏:未定義id屬性
當我嘗試使用getttribute [「身份證」]方法的TableCell的對象,我從得到通過遍歷錶行/細胞則返回undefined:
var rows = document.getElementById["table"].rows;
var cells;
for(var i=0; i < rows.length; i++) {
cells = rows[i].cells
for(var j=0; j < cells.length; j++) {
alert(cells[j].innerHTML); //returns Cell1
alert(cells[j].getAttribute["id"]); //returns undefined
alert(document.getElementById["c1"].innerHTML); //returns Cell1
}
}
這是例如HTML:
<table id="table">
<tbody>
<tr>
<td id="c1">Cell1</td>
</tr>
</tbody>
</table>
問題是爲什麼沒有定義的所有屬性磨片getAttribute方法返回n通過單元格[j]訪問?
是的,這是真的,這是一種方法!謝謝 – 2010-03-10 06:29:33