小码哥的IT人生

onblur 事件

JavaScript基础 2022-06-08 11:56:46小码哥的IT人生shichen

onblur 事件

实例

当用户离开输入字段时执行 JavaScript:

<input type="text" onblur="myFunction()">

完整实例:

<!DOCTYPE html>
<html>
<body>
请输入您的姓名:<input type="text" id="fname" onblur="myFunction()">
<p>当您离开输入字段时,会触发一个将输入文本转换为大写的函数。</p>
<script>
function myFunction() {
  var x = document.getElementById("fname");
  x.value = x.value.toUpperCase();
}
</script>
</body>
</html>

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

页面下方有更多 TIY 实例。

定义和用法

onblur 事件发生在对象失去焦点时。

onblur 事件最常与表单验证代码一起使用(例如,当用户离开表单字段时)。

提示: onblur 事件与 onfocus 事件相反。

提示: onblur 事件类似于 onfocusout 事件。主要区别在于 onblur 事件不会冒泡。因此,如果您想找出元素或其子元素是否失去焦点,可以使用 onfocusout 事件。但是,您可以通过使用 onblur 事件的 addEventListener() 方法的 useCapture 参数(可选)来实现这一点。

浏览器支持

事件 Chrome IE Firefox Safari Opera
onblur 支持 支持 支持 支持 支持

语法

在 HTML 中:

<element onblur="myScript">

完整实例:

<!DOCTYPE html>
<html>
<body>
<p>本例演示如何将 "onblur" 事件分配给 input 元素。</p>
<p>在输入字段中写一些东西,然后在字段外单击以失去焦点(blur)。</p>
<input type="text" onblur="myFunction()">
<script>
function myFunction() {
  alert("Input field lost focus.");
}
</script>
</body>
</html>

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

在 JavaScript 中:

object.onblur = function(){myScript};

完整实例:

<!DOCTYPE html>
<html>
<body>
<p>本例使用 HTML DOM 将 "onblur" 事件分配给输入元素。</p>
<p>在输入字段中写一些东西,然后在字段外单击以失去焦点(blur)。</p>
<input type="text" id="fname">
<script>
document.getElementById("fname").onblur = function() {myFunction()};
function myFunction() {
  alert("Input field lost focus.");
}
</script>
</body>
</html>

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

在 JavaScript 中,使用 addEventListener() 方法:

object.addEventListener("blur", myScript);

完整实例:

<!DOCTYPE html>
<html>
<body>
<p>本例使用 addEventListener() 方法将 "blur" 事件附加到 input 元素。</p>
<p>请在输入字段中写一些东西,然后在字段外单击以失去焦点(blur)。</p>
<input type="text" id="fname">
<script>
document.getElementById("fname").addEventListener("blur", myFunction);
function myFunction() {
  alert("Input field lost focus.");
}
</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

更多实例

示例代码:

将 "onblur" 与 "onfocus" 事件一起使用:

<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

示例代码:

事件委托:把 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

版权所有 © 小码哥的IT人生
Copyright © phpcodeweb All Rights Reserved
ICP备案号:苏ICP备17019232号-2  

苏公网安备 32030202000762号

© 2021-2024