HTML DOM focus() 方法
JavaScript基础 2022-06-08 14:59:10小码哥的IT人生shichen
HTML DOM focus() 方法
定义和用法
focus() 方法可把键盘焦点给予一个窗口。
语法
window.focus()
实例
下面的例子可确保新的窗口得到焦点:
<html>
<body>
<script type="text/javascript">
myWindow=window.open('','','width=200,height=100')
myWindow.document.write("This is 'myWindow'")
myWindow.focus()
</script>
</body>
</html>
TIY
完整实例【把焦点给予新窗口】:
<html>
<body>
<script type="text/javascript">
myWindow=window.open('','','width=200,height=100')
myWindow.document.write("This is 'myWindow'")
myWindow.focus()
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
完整实例【从新窗口移开焦点】:
<html>
<body>
<script type="text/javascript">
myWindow=window.open('','','width=200,height=100')
myWindow.document.write("This is 'myWindow'")
myWindow.blur()
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html