HTML DOM type 属性

定义和用法

type 属性返回表单元素的类型。对于 text area,永远是 "textarea"。

语法

  1. textareaObject.type

实例

本例返回 textarea 元素所属的表单类型:

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