Input Text focus() 方法
JavaScript基础 2022-06-08 16:43:09小码哥的IT人生shichen
Input Text focus() 方法
实例
将焦点放在文本字段上:
document.getElementById("myText").focus();
完整实例:
<!DOCTYPE html>
<html>
<body>
<h1>Element 对象</h1>
<h2>focus() 和 blur() 方法</h2>
<input type="text" id="myText" value="文本字段">
<p>单击按钮可在文本字段中赋予焦点或从文本字段中移除焦点。</p>
<button type="button" onclick="getFocus()">获得焦点</button>
<button type="button" onclick="loseFocus()">失去焦点</button>
<script>
function getFocus() {
document.getElementById("myText").focus();
}
function loseFocus() {
document.getElementById("myText").blur();
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
语法
textObject.focus()
参数
无。
技术细节
返回值:
无返回值。
浏览器支持
Chrome | Edge | Firefox | Safari | Opera |
---|---|---|---|---|
Chrome | Edge | Firefox | Safari | Opera |
支持 | 支持 | 支持 | 支持 | 支持 |