欢迎访问服务器技术网-www.fuwuqijishu.com

HTML DOM anchors 集合

JavaScript fuwuqijishu 2年前 (2022-09-04) 181次浏览 0个评论 扫描二维码
文章目录[隐藏]

HTML DOM anchors 集合

Document 对象


定义和用法

anchors集合返回了当前页面的所有超级链接数组 。

语法

document.anchors[].property


浏览器支持

所有主要浏览器都支持 anchors 集合


实例

实例 1

返回文档的链接数:

<!DOCTYPE html>
<html>
<head>
<meta charset=”utf-8″>
<title>菜鸟教程(runoob.com)</title>
</head>
<body>

<a name=”html”>HTML 教程</a><br>
<a name=”css”>CSS 教程</a><br>
<a name=”xml”>XML 教程</a><br>
<a href=”/js/”>JavaScript 教程</a>

<p>锚的数量:
<script>
document.write(document.anchors.length);
</script></p>

</body>
</html>

以上实例输出结果:

锚的数量: 3

实例 2

返回文档中第一个超级链接的锚文本:

<!DOCTYPE html>
<html>
<head>
<meta charset=”utf-8″>
<title>菜鸟教程(runoob.com)</title>
</head>
<body>

<a name=”html”>HTML 教程</a><br>
<a name=”css”>CSS 教程</a><br>
<a name=”xml”>XML 教程</a>

<p>文档中第一个锚:
<script>
document.write(document.anchors[0].innerHTML);
</script>
</p>

</body>
</html>

以上实例输出结果:

文档中第一个锚: HTML 教程


Document 对象

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2311.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900