HTML DOM id 属性
JavaScript基础 2022-06-08 15:33:43小码哥的IT人生shichen
HTML DOM id 属性
定义和用法
id 属性可设置或返回 <base> 元素的 id。
语法
baseObject.id=id
实例
下面的例子可返回 <base> 元素的 id:
<html>
<head>
<base id="myBaseId" href="http://www.phpcodeweb.com/news/93.html" />
</head>
<body>
<p>Base id:
<script type="text/javascript">
x=document.getElementsByTagName('base')[0];
document.write(x.id
);
</script>
</body>
</html>
输出:
Base id: myBaseId
TIY
完整实例【取得 HTML 文档的 base id】:
<html>
<head>
<base id="myBaseId" href="http://www.phpcodeweb.com/news/93.html" />
</head>
<body>
<p>Base id:
<script type="text/javascript">
x=document.getElementsByTagName('base')[0];
document.write(x.id);
</script></p>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html