Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在struts2 中有一个Action 类。我向 Action 类提供了一个 HTML 文件。
如何找到anchorHTML 文件中的标签总数?
anchor
在 javascript 中,您可以这样做:
var totalAnchors = document.getElementsByTagName('a').length;
如果您只是在链接之后:
alert(document.links.length);