📅  最后修改于: 2023-12-03 15:15:35.080000             🧑  作者: Mango
在HTML和DOM中,focus()方法用于将元素设置为当前活动的元素,使其可以从键盘中接收事件。
element.focus()
该方法不接受任何参数。
无返回值。
<!DOCTYPE html>
<html>
<body>
<button onclick="document.getElementById('myInput').focus()">点击我,输入框获得焦点</button>
<input type="text" id="myInput">
</body>
</html>
点击按钮后,输入框将获得焦点。
<!DOCTYPE html>
<html>
<body>
<input type="text" id="myInput">
<script>
document.getElementById("myInput").focus();
</script>
</body>
</html>
文档加载后,输入框将自动获得焦点。
IE | Firefox | Chrome | Safari | Opera | -- | ------- | ------ | ------ | ----- | 6+ | 1.0+ | 1.0+ | 1.0+ | 7.0+ |