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

HTML DOM id 屬性

定義和用法

id 屬性可設(shè)置或返回圖像的 id。

語法

imageObject.id=id

實例

下面的例子將通過兩種方法來返回圖像的 id:

<html>
<body>
<img id="compman" src="compman.gif" alt="Computerman" />
<br />

<script type="text/javascript">
x=document.getElementsByTagName('img')[0];
document.write("Image id: " + x.id);
document.write("<br />");
document.write("An alternate way: ");
document.write(document.getElementById('compman').id);
</script>

</body>
</html>