DOM Textarea名稱屬性用於設置或返回textarea字段的name屬性的值。
用法:
- 它用於返回name屬性。
textareaObject.name
- 它用於設置name屬性:
textareaObject.cols = text/value
屬性值:
- text:它指定文本區域的名稱。
返回值:它以字符串形式返回文本區域的名稱。
示例1:用HTML程序說明設置DOM Textarea名稱的屬性。
<!DOCTYPE html>
<html>
<head>
<title>
DOM Textarea name Property
</title>
<style>
body {
text-align:center;
}
h1,
h2 {
text-align:center;
}
</style>
</head>
<body>
<h1 style="color:green;">
GeeksforGeeks
</h1>
<h2>
DOM Textarea name Property
</h2>
<textarea id="GFG"
name="GFG_text">
A computer science portal for geeks.
</textarea>
<br>
<br>
<button type="button"
onclick="myGeeks()">
Submit
</button>
<p id="sudo"> </p>
<script>
function myGeeks() {
var x =
document.getElementById(
"GFG").name = "GFG_text2";
document.getElementById("sudo").innerHTML =
"The name is changed to " + x;
}
</script>
</body>
</html>
輸出:
在單擊按鈕之前:
單擊按鈕後:
示例2:用來說明返回DOM Textarea名稱屬性的HTML程序。
<!DOCTYPE html>
<html>
<head>
<title>
DOM Textarea name Property
</title>
<style>
body {
text-align:center;
}
h1,
h2 {
text-align:center;
}
</style>
</head>
<body>
<h1 style="color:green;">
GeeksforGeeks
</h1>
<h2>
DOM Textarea name Property
</h2>
<textarea id="GFG" name="GFG_text">
A computer science portal for geeks.
</textarea>
<br>
<br>
<button type="button"
onclick="myGeeks()">Submit</button>
<p id="sudo"> </p>
<script>
function myGeeks() {
var x = document.getElementById(
"GFG").name;
document.getElementById(
"sudo").innerHTML = x;
}
</script>
</body>
</html>
輸出
在單擊按鈕之前:
單擊按鈕後:
支持的瀏覽器:下麵列出了Textarea name屬性支持的瀏覽器:
- 穀歌瀏覽器
- IE瀏覽器
- Firefox
- Opera
- Safari
相關用法
- HTML Textarea rows用法及代碼示例
- HTML Textarea maxlength用法及代碼示例
- HTML Textarea disabled用法及代碼示例
- HTML Textarea placeholder用法及代碼示例
- HTML Textarea defaultValue用法及代碼示例
- HTML Textarea cols用法及代碼示例
- HTML Textarea form用法及代碼示例
- HTML Textarea required用法及代碼示例
- HTML Textarea autofocus用法及代碼示例
- HTML Textarea readOnly用法及代碼示例
- HTML Textarea autocomplete用法及代碼示例
- HTML Textarea wrap用法及代碼示例
- HTML <textarea>用法及代碼示例
- HTML DOM Textarea用法及代碼示例
注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | DOM Textarea name Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。