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


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


HTML DOM 中的 Textarea value 屬性用於設置或返回 Textarea Box 內的全部內容。它用於獲取和更改 <Textarea> 元素的 value 屬性的值。

注意:文本區域的值是 <textarea> 和 </textarea> 標記之間的文本。

用法

它返回 value 屬性:

textareaObject.value

它用於設置 value 屬性:

textareaObject.value = text 

屬性值:它包含單個值,即文本它定義了 Textarea 字段的值。

示例 1:下麵的 HTML 代碼用於返回 Textarea 元素的內容

HTML


<!DOCTYPE html>
<html>
<head>
    <title>
        DOM Textarea value Property
    </title>
    <style>
        body {
            text-align: center;
        }
        h1,
        h2 {
            text-align: center;
        }
    </style>
</head>
<body>
    <h1 style="color: green;">
        GeeksforGeeks
    </h1>
    <h2>
        DOM Textarea value Property
    </h2>
    <textarea id="GFG" name="GFG_text">
      GeeksForGeeks    
    </textarea>
    <br>
    <br>
    <button type="button" onclick="myGeeks()">
        Return value Property
    </button>
    <p id="sudo" style="font-size:30px"> </p>
    <script>
        function myGeeks() {
            var GFG = document.getElementById("GFG").value;
            document.getElementById("sudo").innerHTML = GFG;
        }
    </script>
</body>
</html>

輸出

HTML DOM Textarea value Property

HTML DOM Textarea value 屬性

示例 2:下麵是 HTML 代碼設置文本區域標簽的內容。

HTML


<!DOCTYPE html>
<html>
<head>
    <title>
        DOM Textarea value Property
    </title>
    <style>
        body {
            text-align: center;
        }
        h1,
        h2 {
            text-align: center;
        }
    </style>
</head>
<body>
    <h1 style="color: green;">
        GeeksforGeeks
    </h1>
    <h2>
        DOM Textarea value Property
    </h2>
    <textarea id="GFG" name="GFG_text">
      GeeksForGeeks    
    </textarea>
    <br>
    <br>
    <button type="button" onclick="myGeeks()">
        Set value Property
    </button>
    <p id="sudo" style="font-size:30px"> </p>
    <script>
        function myGeeks() {
            var GFG = document.getElementById("GFG").value
                = "Hello GeeksForGeeks . ";
            document.getElementById("sudo").innerHTML
                = "The value was changed to " + GFG;
        }
    </script>
</body>
</html>

輸出:

HTML DOM Textarea value Property

HTML DOM Textarea value 屬性

支持的瀏覽器:

  • 穀歌瀏覽器1
  • 邊 12
  • 互聯網瀏覽器 5
  • 火狐1
  • 野生動物園 1
  • Opera 12.1


相關用法


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