DOM Textarea defaultValue属性用于设置或返回textarea字段的默认值。
用法:
- 它用于返回defaultValue属性。
textareaObject.defaultValue
- 它用于设置defaultValue属性:
textareaObject.defaultValue = text/value
属性值:
- text:它指定文本区域的默认值。
返回值:它以字符串形式返回文本区域的默认值。
示例1:演示设置HTML程序的DOM Textarea defaultValue属性。
<!DOCTYPE html>
<html>
<head>
<title>
DOM Textarea defaultValue Property
</title>
<style>
body {
text-align:center;
}
h1,
h2 {
text-align:center;
}
</style>
</head>
<body>
<h1 style="color:green;">
GeeksforGeeks
</h1>
<h2>
DOM Textarea defaultValue Property
</h2>
<textarea id="GFG"
name="GFG_text">
Portal for geeks.
</textarea>
<br>
<br>
<button type="button"
onclick="myGeeks()">
Submit
</button>
<p id="sudo"> </p>
<script>
function myGeeks() {
document.getElementById("GFG").defaultValue =
"A computer science portal for geeks";
}
</script>
</body>
</html>
输出:
在单击按钮之前:
单击按钮后:
示例2:用来说明返回DOM Textarea defaultValue属性的HTML程序。
<!DOCTYPE html>
<html>
<head>
<title>
DOM Textarea defaultValue Property
</title>
<style>
body {
text-align:center;
}
h1,
h2 {
text-align:center;
}
</style>
</head>
<body>
<h1 style="color:green;">
GeeksforGeeks
</h1>
<h2>
DOM Textarea defaultValue Property
</h2>
<textarea id="GFG"
name="GFG_text">
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").defaultValue;
document.getElementById("sudo").innerHTML =
"Default value is " + x;
}
</script>
</body>
</html>
输出
在单击按钮之前:
单击按钮后:
支持的浏览器:下面列出了Textarea defaultValue属性支持的浏览器:
- 谷歌浏览器
- IE浏览器
- Firefox
- Opera
- Safari
相关用法
- HTML Input URL defaultValue用法及代码示例
- HTML Input Month defaultValue用法及代码示例
- HTML Input Week defaultValue用法及代码示例
- HTML Input Email defaultValue用法及代码示例
- HTML Input Text defaultValue用法及代码示例
- HTML Input Hidden defaultValue用法及代码示例
- HTML Input Time defaultValue用法及代码示例
- HTML Input Date defaultValue用法及代码示例
- HTML Input Search defaultValue用法及代码示例
- HTML Input Datetime defaultValue用法及代码示例
- HTML Input Password defaultValue用法及代码示例
- HTML Input Color defaultValue用法及代码示例
- HTML Input Submit defaultvalue用法及代码示例
- HTML Input Number defaultValue用法及代码示例
- HTML Input reset defaultValue用法及代码示例
注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML | DOM Textarea defaultValue property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。