- jQuery 教程
- jQuery - 首页
- jQuery - 路线图
- jQuery - 概述
- jQuery - 基础
- jQuery - 语法
- jQuery - 选择器
- jQuery - 事件
- jQuery - 属性
- jQuery - AJAX
- jQuery DOM 操作
- jQuery - DOM
- jQuery - 添加元素
- jQuery - 删除元素
- jQuery - 替换元素
- jQuery CSS 操作
- jQuery - CSS 类
- jQuery - 尺寸
- jQuery - CSS 属性
- jQuery 效果
- jQuery - 效果
- jQuery - 动画
- jQuery - 链式调用
- jQuery - 回调函数
- jQuery 遍历
- jQuery - 遍历
- jQuery - 遍历祖先节点
- jQuery - 遍历后代节点
- jQuery UI
- jQuery - 交互
- jQuery - 小部件
- jQuery - 主题
- jQuery 参考
- jQuery - 选择器
- jQuery - 事件
- jQuery - 效果
- jQuery - HTML/CSS
- jQuery - 遍历
- jQuery - 杂项
- jQuery - 属性
- jQuery - 实用工具
- jQuery 插件
- jQuery - 插件
- jQuery - PagePiling.js
- jQuery - Flickerplate.js
- jQuery - Multiscroll.js
- jQuery - Slidebar.js
- jQuery - Rowgrid.js
- jQuery - Alertify.js
- jQuery - Progressbar.js
- jQuery - Slideshow.js
- jQuery - Drawsvg.js
- jQuery - Tagsort.js
- jQuery - LogosDistort.js
- jQuery - Filer.js
- jQuery - Whatsnearby.js
- jQuery - Checkout.js
- jQuery - Blockrain.js
- jQuery - Producttour.js
- jQuery - Megadropdown.js
- jQuery - Weather.js
- jQuery 有用资源
- jQuery - 问答
- jQuery - 快速指南
- jQuery - 有用资源
- jQuery - 讨论
jQuery blur() 事件方法
jQuery 事件blur() 方法用于在选定的元素上触发 blur 事件,或者绑定(或附加)一个在 blur 事件发生时运行的函数。此方法通常与<input> 和<textarea> 字段一起使用,以便在用户点击它们外部时失去焦点。
语法
以下是 jQuery 事件blur() 方法的语法:
$(selector).blur(function)
参数
此方法接受一个可选参数“function”,如下所述:
- function (可选) - 当 blur 事件发生在选定的元素上时要运行的函数。
返回值
此方法不返回值,但会在选定的元素上触发 blur 事件。
示例 1
以下程序演示了 jQuery 事件blur() 方法的使用:
<html> <head> <script type = "text/javascript" src = "https://tutorialspoint.com/jquery/jquery-3.6.0.js"> </script> </head> <body> <input type="text" placeholder="Your name"> <p>Enter something in input field and click outside the input field to lose the focus.</p> <script> $('input').blur(function(){ alert("Input contents: " + $(this).val()); }); </script> </body> </html>
输出
程序执行后,将显示一个输入字段。当用户在此字段中输入一些内容,然后点击其外部时,该字段将失去焦点(触发 blur 事件):
点击“确定”按钮后,您将看到输入字段失去了焦点:
示例 2
以下是 jQuery 事件blur() 方法的另一个示例。在这里,我们使用此方法绑定一个将在 blur 事件发生(触发)在选定的元素上时运行(执行)的函数:
<html> <head> <script type = "text/javascript" src = "https://tutorialspoint.com/jquery/jquery-3.6.0.js"> </script> </head> <body> <p>Enter something in textarea field and click outside the field to lose the focus.</p> <p>Write your feedback</p> <textarea name="" id="" cols="30" rows="10" placeholder="feedback...."></textarea> <span></span> <script> $('textarea').blur(function add(){ document.querySelector('span').innerHTML = $(this).val(); }); </script> </body> </html>
输出
执行上述程序后,将显示一个文本区域字段。当用户输入文本,然后点击字段外部时,将触发 blur 事件,并且该字段将失去焦点:
jquery_ref_events.htm
广告