jquery中常用事件有哪些?下面web建站小编给大家简单介绍一下实现代码!
获取焦点事件
$("input[name='member']").focus(function(){ $(this).addClass("focus"); });
失去焦点事件
$("input[name='member']").blur(function(){ $(this).removeClass("focus"); });
鼠标移入事件
$("button").mouseover(function(){ $(this).css("font-weight","bold"); });
鼠标移出事件
$("button").mouseout(function(){ $(this).css("font-weight","normal"); });
键盘enter按下事件
$(document).keypress(function(e){ if(e.keyCode==13){ alert("触发表单的提交事件"); } });
jQuery获取和设置input元素的值(监听input元素的值变化)
标签: blur, focus, jquery事件, keypress, mouseout, mouseover
上面是“jquery中常用事件介绍”的全面内容,想了解更多关于 js 内容,请继续关注web建站教程。
当前网址:https://m.ipkd.cn/webs_2990.html
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!