项目需求,我需要在页面加载完之后给 新添加的元素增加focus事件 , 我用的jQuery1.3,据说多了个live()事件 ,可以支持这种重复绑 定 问题,可是去官网一看:
Possible event values:
click
, dblclick
, mousedown
, mouseup
, mousemove
, mouseover
, mouseout
, keydown
, keypress
, keyup
Currently not supported:
blur
, focus
, mouseenter
, mouseleave
, change
, submit
真晕啊,我就是要处理blur,focus事件
的,干嘛不支持,不支持realse干嘛啊 。。。
此例使用了livequery( matchedFn ),场景是:
好在发现一个插件,livequery
例子:
$(‘#table tr td ‘).livequery(function(){ $(this).find("input#quotes").focus(function(){ //focus event }), $(this).find("input#serial_num").focus(function(){ // focus event }) }); $(‘#table tr td ‘).livequery(function(){ $(this).find("input#quotes").blur(function(){ //blur event }), $(this).find("input#serial_num").blur(function(){ //blur event }) });
再分享一下我老师大神的人工智能教程吧。零基础!通俗易懂!风趣幽默!还带黄段子!希望你也加入到我们人工智能的队伍中来!https://blog.csdn.net/jiangjunshow
原文地址:https://www.cnblogs.com/swdhywhd/p/10310921.html
时间: 2024-11-03 12:28:30