jquery触发失去焦点事件例⼦详解
触发焦点:
$("Element").focus()
触发每⼀个匹配元素获得焦点事件。
$("Element").focus(function)
事件会在获得焦点的时候触发,既可以是⿏标⾏为,也可以是按tab键导航触发的⾏为,并且绑定⼀个处理⽅法。
失去焦点:
$("Element").blur()
触发每⼀个匹配元素失去焦点事件。
$("Element").blur(function)
事件会在元素失去焦点的时候触发,既可以是⿏标⾏为,也可以是按tab键离开的⾏为,并且绑定⼀个处理⽅法。例⼦⼀
代码如下复制代码
$(document).ready(function(){
$(".regbox .textb").bind("focus",function(){});
$(".regbox .textb").bind("blur",function(){});
$("input").css({"background-colo(www.111cn)r":"#fff3de"});
//if (screen.width>=1280){}else if (screen.width<1280){}
})
例⼦⼆
代码如下复制代码
<script src="jquery-1.9.1.js" type="text/javascript"></script>
<script type="text/javascript">
$(function () {
$('#username').focus(function ()//得到教室时触发的时间
{
$('#username').val('');
})
$('#username').blur(function () 失去焦点时触发的时间
{
blur事件if ($('#username').val() == 'marry') {
$('#q').text('⽤户名已存在!')
}
else { $('#q').text('ok!') }
})
from:
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论