HTML DOM rows 属性

定义和用法

rows 属性设置或返回 textarea 的高度。

语法

  1. textareaObject.rows=number_of rows

实例

本例改变 textarea 的高度:

  1. <html>
  2. <head>
  3. <script type="text/javascript">
  4. function changeRows()
  5. {
  6. document.getElementById('txt1').rows="15";
  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="changeRows()" value="Change height" />
  17.  
  18. </body>
  19. </html>