欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

HTML DOM id 屬性

定義和用法

id 屬性可返回一個(gè)鏈接的 id。

語(yǔ)法

anchorObject.id=ide

實(shí)例

下面的例子可輸出一個(gè)鏈接的 id:

<html>
<body>

<p><a id="myAnchor"
href="http://www.dbjr.com.cn">Visit jb51.net</a></p>

<script type="text/javascript">
x=document.getElementById("myAnchor");
document.write(x.id);
</script>

</body>
</html>