javascript中focus是什么意思
在JavaScript中,focus是“焦点”的意思,focus()方法可以用于为元素设置焦点,语法为“HTMLElementObject.focus()”。 本教程操作环境:windows10系统、javascript1.8.5版、Dell G3电脑。 focus() 方法用于为元素设置焦点(如果可以设置)。 提示:使用 blur() 方法来移除元素焦点。 语法为: 示例如下: 输出结果: :javascript学习教程 以上就是javascript中focus是什么意思的详细内容javascript中focus是什么意思
HTMLElementObject.focus()
<!DOCTYPE html>
<html>
<head>
<style>
a:focus, a:active {
color: green;
}
</style>
</head>
<body>
<a id="myAnchor" href="//www.yhxzy.com">获取焦点</a>
<p>点击按钮设置或移除以上链接的焦点。</p>
<input type="button" onclick="getfocus()" value="获取焦点">
<input type="button" onclick="losefocus()" value="移除焦点">
<script>
function getfocus() {
document.getElementById("myAnchor").focus();
}
function losefocus() {
document.getElementById("myAnchor").blur();
}
</script>
</body>
</html>