DOM輸入select()方法選擇文本區域或包含文本字段的輸入元素的所有文本內容。
用法:
element.select();
參數:此方法不接受任何參數。
Example:本示例選擇輸入文本字段的內容。
<!DOCTYPE html>
<html>
<head>
<title>HTML DOM focus() Method</title>
</head>
<body>
<center>
<h1 style="color:green;">
GeeksForGeeks
</h1>
<h2>DOM select() Method</h2>
<input type="text" id="text-box" size="20"
value="A computer science portal">
<button onclick="selectText()">
Select text
</button>
<script>
function selectText() {
const content =
document.getElementById('text-box');
content.select();
}
</script>
</center>
</body>
</html>
輸出:
- 單擊按鈕之前:
- 單擊按鈕後:
支持的瀏覽器:下麵列出了HTML DOM輸入文本select()方法支持的瀏覽器:
- 穀歌瀏覽器
- IE瀏覽器
- Firefox
- 蘋果Safari
- Opera
相關用法
- HTML Input Password select()用法及代碼示例
- HTML input text用法及代碼示例
- HTML Input Text name用法及代碼示例
- HTML DOM Input Text用法及代碼示例
- HTML Input Text value用法及代碼示例
- HTML Input Text readOnly用法及代碼示例
- HTML Input Text pattern用法及代碼示例
- HTML Input Text type用法及代碼示例
- HTML Input Text autofocus用法及代碼示例
- HTML Input Text placeholder用法及代碼示例
- HTML Input Text autocomplete用法及代碼示例
- HTML Input Text size用法及代碼示例
注:本文由純淨天空篩選整理自DeepakDev大神的英文原創作品 HTML | DOM Input Text select() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。