HTML DOM id 属性

定义和用法

id 属性可设置或返回 <base> 元素的 id。

语法

baseObject.id=id

实例

下面的例子可返回 <base> 元素的 id:

<html>
<head>
<base id="myBaseId" href="http://www.w3school.com.cn/htmldom/" />
</head>

<body>
<p>Base id: 
<script type="text/javascript">
x=document.getElementsByTagName('base')[0];
document.write(x.id);
</script>
</body>

</html>

输出:

Base id: myBaseId