W3Schools 在线编辑工具(TIY) V3.0
编辑的代码:
运行代码 »
©
w3s.com.cn
运行结果窗口大小:
300 x 150
<
html
>
<
body
>
<
a
name
="first"
>
第一个锚
<
/a
>
<
br
/
>
<
a
name
="second"
>
第二个锚
<
/a
>
<
br
/
>
<
a
name
="third"
>
第三个锚
<
/a
>
<
br
/
>
<
br
/
>
文档中锚的数目:
<
script
type
="text/javascript"
>
document.write(document.anchors.length)
<
/script
>
<
/body
>
<
/html
>
<html> <body> <a name="first">第一个锚</a><br /> <a name="second">第二个锚</a><br /> <a name="third">第三个锚</a><br /> <br /> 文档中锚的数目: <script type="text/javascript"> document.write(document.anchors.length) </script> </body> </html>