0

我需要你的帮助 :) !

我有一个页面有很多标签,我必须在一个数组中检索所有以 td_ 开头的 id

我不能使用jQuery框架...否则会更容易...

你知道我怎么能做到吗?

4

2 回答 2

1

您可以使用查询选择器:

elementList = document.querySelectorAll('td[id^=td_]');
于 2013-07-03T15:36:49.137 回答
1

演示

var nodeList = document.querySelectorAll('[id^=td_]'); // or if only TDs are tergated use: 'td[id^=td_]' instead   {thx Derek}
var arr = []; // Will hold the array of Node's
for (var i = 0, ll = nodeList.length; i < ll; arr.push(nodeList[i++]));
于 2013-07-03T15:41:05.683 回答