DOM Textarea wrap屬性用於設置或返回textarea的wrap屬性的值。它描述了提交表單時包裝文本的方式。
用法:
- 它用於返回wrap屬性。
textareaObject.wrap
- 它用於設置wrap屬性。
textareaObject.wrap = soft|hard
屬性值:
- soft:它定義了文本不被包裝。它是默認值。
- hard:它定義了文本換行。在此必須提到cols屬性。
返回值:它以字符串形式返回文本在文本區域中的環繞方式。
示例1:本示例說明了如何設置Textarea wrap屬性。
<!DOCTYPE html>
<html>
<head>
<title>
DOM textarea wrap Property
</title>
</head>
<body style="text-align:center">
<h1 style="color:green;">
GeeksforGeeks
</h1>
<h2>
DOM textarea wrap Property
</h2>
<!-- Assigning id to textarea. -->
<textarea id="GFG_ID"
rows="3"
cols="10"
name="Geeks"
wrap="hard">
This text is wrapped in the text area field.
</textarea>
<br>
<button onclick="myGeeks()">
Submit
</button>
<p id="GFG"> </p>
<script>
function myGeeks() {
// Set the wrap property.
var x =
document.getElementById(
"GFG_ID").wrap = "soft";
document.getElementById("GFG").innerHTML =
"The value is changed to " + x;
}
</script>
</body>
</html>
輸出:
在點擊按鈕之前:
單擊按鈕後:
示例2:本示例說明了如何返回Textarea Wrap屬性。
<!DOCTYPE html>
<html>
<head>
<title>
DOM textarea Wrap Property
</title>
</head>
<body style="text-align:center">
<h1 style="color:green;">GeeksforGeeks</h1>
<h2>DOM textarea Wrap Property</h2>
<!-- Assigning id to textarea. -->
<textarea id="GFG_ID"
rows="3"
cols="10"
name="Geeks"
wrap="hard">
This text is wrapped in the text area field.
</textarea>
<br>
<button onclick="myGeeks()">
Submit
</button>
<p id="sudo"></p>
<!-- Return the value of the wrap property -->
<script>
function myGeeks() {
var x =
document.getElementById(
"GFG_ID").wrap;
document.getElementById(
"sudo").innerHTML = x;
}
</script>
</body>
</html>
輸出:
在點擊按鈕之前:
單擊按鈕後:
支持的瀏覽器:下麵列出了Textarea Wrap屬性支持的瀏覽器:
- 穀歌瀏覽器
- IE瀏覽器
- Firefox
- Opera
- Safari
相關用法
- HTML <textarea> wrap屬性用法及代碼示例
- HTML Textarea name用法及代碼示例
- HTML Textarea maxlength用法及代碼示例
- HTML Textarea autofocus用法及代碼示例
- HTML Textarea autocomplete用法及代碼示例
- HTML Textarea readOnly用法及代碼示例
- HTML Textarea disabled用法及代碼示例
- HTML Textarea placeholder用法及代碼示例
- HTML Textarea cols用法及代碼示例
- HTML Textarea required用法及代碼示例
- HTML Textarea rows用法及代碼示例
- HTML Textarea defaultValue用法及代碼示例
- HTML Textarea form用法及代碼示例
- CSS word-wrap用法及代碼示例
- CSS flex-wrap用法及代碼示例
注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | DOM Textarea wrap Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。