HTML DOM cols 属性

定义和用法

cols 属性设置或返回文本框的字符列的宽度。

语法

  1. textareaObject.cols=number_of_columns

实例

下面的例子更改的文本框的宽度:

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