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

HTML DOM links 集合

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

HTML DOM links 集合

Document 对象


定义和用法

links 集合返回当前文档所有链接的数组。

提示: links 集合计算 <a href=””> 标签和 <area> 标签。

语法

document.links[].property


浏览器支持

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


实例

实例 1

返回文档的链接数:

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

<img src =”planets.gif” width=”145″ height=”126″ alt=”Planets” usemap =”#planetmap”>
<map name=”planetmap”>
<area shape=”rect” coords=”0,0,82,126″ href=”sun.htm” alt=”Sun”>
<area shape=”circle” coords=”90,58,3″ href=”mercur.htm” alt=”Mercury”>
<area shape=”circle” coords=”124,58,8″ href=”venus.htm” alt=”Venus”>
</map>
<p><a href=”/js/”>JavaScript 教程</a></p>
<p>链接/地址数目:
<script>
document.write(document.links.length);
</script></p>

</body>
</html>

以上实例输出结果:

链接/地址数目: 4

实例 2

返回文档的第一个链接:

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

<img src =”planets.gif” width=”145″ height=”126″ alt=”Planets” usemap =”#planetmap”>
<map name=”planetmap”>
<area id=”sun” shape=”rect” coords=”0,0,82,126″ href=”sun.htm” alt=”Sun”>
<area id=”mercury” shape=”circle” coords=”90,58,3″ href=”mercur.htm” alt=”Mercury”>
<area id=”venus” shape=”circle” coords=”124,58,8″ href=”venus.htm” alt=”Venus”>
</map>
<p><a id=”javascript” href=”/js/”>JavaScript 教程</a></p>
<p>第一个链接/地址的ID:
<script>
document.write(document.links[0].id);
</script></p>

</body>
</html>

以上实例输出结果:

第一个链接/地址的ID:sun


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