當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML DOM Textarea cols屬性用法及代碼示例


HTML DOM Textarea cols 返回並修改 HTML 文檔中文本區域元素的 cols 屬性值。

用法

以下是語法 -

1. Returning cols

object.cols

2. Adding cols

object.cols = “number”

讓我們看一個 HTML DOM Textarea cols 屬性的例子:

示例

<!DOCTYPE html>
<html>
<style>
   body {
      color:#000;
      background:lightseagreen;
      height:100vh;
   }
   .btn {
      background:#db133a;
      border:none;
      height:2rem;
      border-radius:2px;
      width:40%;
      display:block;
      color:#fff;
      outline:none;
      cursor:pointer;
   }
</style>
<body>
<h1>DOM Textarea cols Property Demo</h1>
<textarea>Hi! I'm a textarea element in an HTML document with some dummy text.</textarea>
<button onclick="set()" class="btn">Set Cols = 50</button>
<script>
   function set() {
      document.querySelector("textarea").cols = '50';
   }
</script>
</body>
</html>

輸出

點擊 ”Set Cols = 50”按鈕將 cols 屬性的值設置為 50。

相關用法


注:本文由純淨天空篩選整理自AmitDiwan大神的英文原創作品 HTML DOM Textarea cols Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。