HTML DOM blur() 方法

HTML DOM Anchor 对象参考手册 HTML DOM Anchor 对象参考手册


定义和用法

blur() 方法用于从链接上移开焦点。

语法

anchorObject.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://yige.org">Visit yige.org</a>
<br /><br/>
<input type="button" onclick="getfocus()" value="Get focus">
<input type="button" onclick="losefocus()" value="Lose focus">
</body>

</html>

使用 focus() 和 blur()



HTML DOM Anchor 对象参考手册 HTML DOM Anchor 对象参考手册

粤ICP备11097351号-1