我想知道如何计算div
元素中存在的锚标记的数量。
e.g:
<div>
<a href="1" >1</a>
<a href="2" >2</a>
<a href="3" >3</a>
<a href="4" >4</a>
</div>
有多少<a>
个代码?
答案 0 :(得分:27)
theDivElement.getElementsByTagName('a').length
答案 1 :(得分:9)
使用HTML DOM getElementsByTagName()获取对象下的所有“a”标记 要获得div,最好给它一个ID然后再使用 的getElementsByTagName
var anchors = document.getElementById("thediv").getElementsByTagName("a");
alert("The Div has " + anchors.length + " links in it");
<div id="thediv">
<a href="#">link 1</a>
<a href="#">link 2</a>
<a href="#">link 3</a>
</div>