html的DOM中document对象anchors集合用法实例
本文实例讲述了html的DOM中document对象anchors集合用法。分享给大家供大家参考。具体分析如下:
anchors 集合可返回对文档中所有 Anchor 对象的引用。
语法:
代码如下:
document.anchors[]
例子:
代码如下:
<html> <body> <a name="first">First anchor</a><br /> <a name="second">Second anchor</a><br /> <a name="third">Third anchor</a><br /> <br /> Number of anchors in this document: <script type="text/javascript"> document.write(document.anchors.length) </script> </body> </html>
希望本文所述对大家的javascript程序设计有所帮助。
相关推荐
爱读书的旅行者 2020-07-07
liaoxuewu 2020-05-19
lupeng 2020-11-14
sjcheck 2020-11-10
sjcheck 2020-11-03
meylovezn 2020-08-28
owhile 2020-08-18
Francismingren 2020-08-17
pythonclass 2020-07-29
sunzhihaofuture 2020-07-19
行吟阁 2020-07-05
tianqi 2020-07-05
行吟阁 2020-07-04
冰蝶 2020-07-04
lyg0 2020-07-04
owhile 2020-07-04
opspider 2020-06-28
lengyu0 2020-06-28
tianqi 2020-06-21