对不起,我很抱歉-我的Javascript不好。

无论如何,我的头中有这个:

<script type="text/javascript">
var tableRows = document.getElementbyId("inventorytable").childNodes;

alert(tableRows)
</script>

据我所知,它应该获取ID为“inventorytable”的表的子级,对吗?

尝试最终将DOM树向下移动到表的子代(即TD)的子代,并根据它们在表中的位置添加字符串。但是目前,仅尝试选择表中的子项并提醒他们。

我添加了以下代码,但仍然没有警报:
<head>
<script type="text/javascript">
window.onload = function inventorytable() {
var tableRows = document.getElementbyId("inventorytable").rows;

alert(tableRows.length);
};
</script>
</head>

最佳答案

尝试:

var tableRows = document.getElementbyId("inventorytable").rows;
alert(tableRows.length);

参见https://developer.mozilla.org/en/DOM/table.rows

关于javascript - 尝试获取Java中所有TR行的列表,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7966488/

10-16 15:03