HTML DOM id 属性

定义和用法

id 属性设置或返回 textarea 的 id。

语法

  1. textareaObject.id=id

实例

本例获取 textarea 的 id:

  1. <html>
  2. <head>
  3. <script type="text/javascript">
  4. function alertId()
  5. {
  6. alert(document.getElementById('txt1').id);
  7. }
  8. </script>
  9. </head>
  10. <body>
  11.  
  12. <textarea id="txt1">
  13. Hello world....This is a textarea
  14. </textarea>
  15. <br />
  16. <input type="button" onclick="alertId()" value="Alert ID" />
  17.  
  18. </body>
  19. </html>