HTML DOM focus() 方法
JavaScript基础 2022-06-08 15:29:09小码哥的IT人生shichen
HTML DOM focus() 方法
定义和用法
focus() 方法用于给予链接焦点。
语法
anchorObject.focus()
说明
该方法可滚动文档以使 Anchor 对象的位置变为可见。
实例
<html>
<head>
<style type="text/css">
a:active {color:green}
</style>
<script type="text/javascript">
function getfocus()
{document.getElementById('myAnchor').focus()
}
function losefocus()
{document.getElementById('myAnchor').blur()
}
</script>
</head>
<body>
<a id="myAnchor"
href="http://www.phpcodeweb.com">Visit phpcodeweb.com</a>
<br /><br/>
<input type="button" onclick="getfocus()" value="Get focus">
<input type="button" onclick="losefocus()" value="Lose focus">
</body>
</html>
TIY
完整实例【使用 focus() 和 blur()】:
<html>
<head>
<style type="text/css">
a:active {color:green}
</style>
<script type="text/javascript">
function getfocus()
{document.getElementById('myAnchor').focus()}
function losefocus()
{document.getElementById('myAnchor').blur()}
</script>
</head>
<body>
<a id="myAnchor" href="http://www.phpcodeweb.com">访问 phpcodeweb.com</a>
<br /><br/>
<input type="button" onclick="getfocus()" value="获得焦点">
<input type="button" onclick="losefocus()" value="失去焦点">
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html