HTML DOM id 属性
JavaScript基础 2022-06-08 16:51:40小码哥的IT人生shichen
HTML DOM id 属性
定义和用法
id属性设置或返回链接元素的id。
语法
linkObject.id=id
实例
以下示例输出链接元素的id:
<html>
<head>
<link rel="stylesheet" type="text/css"
id="style1" href="try_dom_link.css" />
</head>
<body>
<script type="text/javascript">
x=document.getElementById("style1");
document.write("Id of link=" + x.id);
</script>
</body>
</html>
TIY
完整实例【Get the id of a <link> element】:
<html>
<head>
<link rel="stylesheet" type="text/css" id="style1" href="/example/hdom/try_dom_link.css" />
</head>
<body>
<script type="text/javascript">
x=document.getElementById("style1");
document.write("Id of link=" + x.id);
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html