onfocus 事件
onfocus 事件
实例
当输入字段获得焦点时执行 JavaScript:
<input type="text" onfocus="myFunction()">
完整实例:
<!DOCTYPE html>
<html>
<body>
请输入您的姓名:<input type="text" onfocus="myFunction(this)">
<p>当输入字段获得焦点时,会触发一个更改背景颜色的函数。</p>
<script>
function myFunction(x) {
x.style.background = "yellow";
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
页面下方有更多 TIY 实例。
定义和用法
onfocus 事件在元素获得焦点时发生。
onfocus 事件最常与 <input>、<select> 和 <a> 一起使用。
提示: onfocus 事件与 onblur 事件相反。
提示: onfocus 事件类似于 onfocusin 事件。主要区别在于 onfocus 事件不会冒泡。因此,如果您想确定一个元素或其子元素是否获得焦点,可使用 onfocusin 事件。但是,您可以通过对 onfocus 事件使用 addEventListener() 方法的 useCapture 参数来实现这一点。
浏览器支持
事件 | Chrome | IE | Firefox | Safari | Opera |
---|---|---|---|---|---|
onfocus | 支持 | 支持 | 支持 | 支持 | 支持 |
语法
在 HTML 中:
<element onfocus="myScript">
完整实例:
<!DOCTYPE html>
<html>
<body>
<p>本例演示如何将 "onfocus" 事件分配给 input 元素。</p>
请输入您的姓名:<input type="text" id="fname" onfocus="myFunction()">
<script>
function myFunction() {
document.getElementById("fname").style.backgroundColor = "red";
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
在 JavaScript 中:
object.onfocus = function(){myScript};
完整实例:
<!DOCTYPE html>
<html>
<body>
<p>本例使用 HTML DOM 将 "onfocus" 事件分配给输入元素。</p>
请输入您的姓名:<input type="text" id="fname">
<script>
document.getElementById("fname").onfocus = function() {myFunction()};
function myFunction() {
document.getElementById("fname").style.backgroundColor = "red";
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
在 JavaScript 中,使用 addEventListener() 方法:
object.addEventListener("focus", myScript);
完整实例:
<!DOCTYPE html>
<html>
<body>
<p>本例使用 addEventListener() 方法将 "focus" 事件附加到输入元素。</p>
请输入您的姓名:<input type="text" id="fname">
<script>
document.getElementById("fname").addEventListener("focus", myFunction);
function myFunction() {
document.getElementById("fname").style.backgroundColor = "red";
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
注释:Internet Explorer 8 或更早的版本不支持 addEventListener() 方法。
技术细节
冒泡: | 不支持 |
---|---|
可取消: | 不支持 |
事件类型: | FocusEvent |
支持的 HTML 标签: | 所有 HTML 元素,除了:<base>, <bdo>, <br>, <head>, <html>, <iframe>, <meta>, <param>, <script>, <style> 以及 <title> |
DOM 版本: | Level 2 Events |
更多实例
示例代码:
将 "onfocus" 与 "onblur" 事件一起使用:
<input type="text" onfocus="focusFunction()" onblur="blurFunction()">
完整实例:
<!DOCTYPE html>
<html>
<body>
<p>当您输入输入字段时,会触发将背景颜色设置为黄色的函数。当您离开输入字段时,会触发将背景颜色设置为红色的函数。</p>
请输入姓名:<input type="text" id="myInput" onfocus="focusFunction()" onblur="blurFunction()">
<script>
function focusFunction() {
// Focus = 将输入的背景颜色更改为黄色
document.getElementById("myInput").style.background = "yellow";
}
function blurFunction() {
// No focus = 将输入的背景颜色更改为红色
document.getElementById("myInput").style.background = "red";
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
示例代码:
清空获得焦点的输入字段:
<!-- 当输入字段获得焦点时,将其当前值替换为空字符串 -->
<input type="text" onfocus="this.value=''" value="Blabla">
完整实例:
<!DOCTYPE html>
<html>
<body>
<p>获得焦点时清除输入字段:</p>
<input type="text" onfocus="this.value=''" value="Blabla">
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
示例代码:
事件委托:将 addEventListener() 的 useCapture 参数设置为 true:
<form id="myForm">
<input type="text" id="myInput">
</form>
<script>
var x = document.getElementById("myForm");
x.addEventListener("focus", myFocusFunction, true);
x.addEventListener("blur", myBlurFunction, true);
function myFocusFunction() {
document.getElementById("myInput").style.backgroundColor = "yellow";
}
function myBlurFunction() {
document.getElementById("myInput").style.backgroundColor = "";
}
</script>
完整实例:
<!DOCTYPE html>
<html>
<body>
<p>当您输入输入字段(FORM 的子)时,会触发一个将背景颜色设置为黄色的函数。当您离开输入字段时,会触发一个删除背景颜色的函数。</p>
<form id="myForm">
<input type="text" id="myInput">
</form>
<script>
var x = document.getElementById("myForm");
x.addEventListener("focus", myFocusFunction, true);
x.addEventListener("blur", myBlurFunction, true);
function myFocusFunction() {
document.getElementById("myInput").style.backgroundColor = "yellow";
}
function myBlurFunction() {
document.getElementById("myInput").style.backgroundColor = "";
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
示例代码:
事件委托:使用 focusin 事件(Firefox 不支持):
<form id="myForm">
<input type="text" id="myInput">
</form>
<script>
var x = document.getElementById("myForm");
x.addEventListener("focusin", myFocusFunction);
x.addEventListener("focusout", myBlurFunction);
function myFocusFunction() {
document.getElementById("myInput").style.backgroundColor = "yellow";
}
function myBlurFunction() {
document.getElementById("myInput").style.backgroundColor = "";
}
</script>
完整实例:
<!DOCTYPE html>
<html>
<body>
<p>当您输入输入字段(FORM 的子)时,会触发一个将背景颜色设置为黄色的函数。当您离开输入字段时,会触发一个删除背景颜色的函数。</p>
<form id="myForm">
<input type="text" id="myInput">
</form>
<script>
var x = document.getElementById("myForm");
x.addEventListener("focusin", myFocusFunction);
x.addEventListener("focusout", myBlurFunction);
function myFocusFunction() {
document.getElementById("myInput").style.backgroundColor = "yellow";
}
function myBlurFunction() {
document.getElementById("myInput").style.backgroundColor = "";
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html