DOM Textarea禁用屬性用於設置或返回是否禁用textarea元素。禁用的文本區域為un-clickable且不可用。它是一個布爾屬性,用於反映HTML Disabled屬性。
用法:
- 它用於返回禁用的屬性。
textareaObject.disabled
- 用於設置禁用的屬性。
textareaObject.disabled = true|false
屬性值:
- true:它定義了textarea被禁用。
- False:它具有默認值。它定義了textarea未被禁用。
返回值:它返回一個布爾值,表示是否禁用了textarea。
示例1:本示例說明了如何設置Textarea禁用屬性。
<!DOCTYPE html>
<html>
<head>
<title>DOM textarea disabled Property</title>
</head>
<body style="text-align:center">
<h1 style="color:green;">
GeeksforGeeks
</h1>
<h2>DOM textarea disabled Property</h2>
<p>This text area is non editable.</p>
<!-- Assigning id to textarea. -->
<textarea id="GFG" disabled>
This textarea field is disabled.
</textarea>
<br>
<button onclick="myGeeks()">Submit</button>
<script>
function myGeeks() {
// Set the textarea property.
document.getElementById(
"GFG").disabled = false;
}
</script>
</body>
</html>
輸出:
在單擊按鈕之前:
單擊按鈕後:
示例2:本示例說明了如何返回Textarea Disabled屬性。
<!DOCTYPE html>
<html>
<head>
<title>DOM textarea disabled Property</title>
</head>
<body style="text-align:center">
<h1 style="color:green;">GeeksforGeeks</h1>
<h2>DOM textarea disabled Property</h2>
<p>This text area is non editable.</p>
<!-- Assigning id to textarea. -->
<textarea id="GFG" disabled>
This textarea field is disabled.
</textarea>
<br>
<button onclick="myGeeks()">Submit</button>
<p id="sudo"></p>
<script>
function myGeeks() {
// Return Boolean value to represent textarea.
var x = document.getElementById("GFG").disabled;
document.getElementById("sudo").innerHTML = x;
}
</script>
</body>
</html>
輸出:
在單擊按鈕之前:
單擊按鈕後:
支持的瀏覽器:下麵列出了Textarea Disabled屬性支持的瀏覽器:
- 穀歌瀏覽器
- IE瀏覽器
- Firefox
- Opera
- Safari
相關用法
- HTML Textarea name用法及代碼示例
- HTML Textarea rows用法及代碼示例
- HTML Textarea autocomplete用法及代碼示例
- HTML Textarea required用法及代碼示例
- HTML Textarea readOnly用法及代碼示例
- HTML Textarea defaultValue用法及代碼示例
- HTML Textarea form用法及代碼示例
- HTML Textarea placeholder用法及代碼示例
- HTML Textarea autofocus用法及代碼示例
- HTML Textarea maxlength用法及代碼示例
- HTML Textarea cols用法及代碼示例
- HTML Textarea wrap用法及代碼示例
- HTML Link disabled用法及代碼示例
- HTML Input URL disabled用法及代碼示例
注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | DOM Textarea disabled Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。