HTML DOM id 属性

定义和用法

id 属性可设置或返回图像的 id。

语法

  1. imageObject.id=id

实例

下面的例子将通过两种方法来返回图像的 id:

  1. <html>
  2. <body>
  3. <img id="compman" src="compman.gif" alt="Computerman" />
  4. <br />
  5.  
  6. <script type="text/javascript">
  7. x=document.getElementsByTagName('img')[0];
  8. document.write("Image id: " + x.id);
  9. document.write("<br />");
  10. document.write("An alternate way: ");
  11. document.write(document.getElementById('compman').id);
  12. </script>
  13.  
  14. </body>
  15. </html>