84669 人が学習中
152542 人が学習中
20005 人が学習中
5487 人が学習中
7821 人が学習中
359900 人が学習中
3350 人が学習中
180660 人が学習中
48569 人が学習中
18603 人が学習中
40936 人が学習中
1549 人が学習中
1183 人が学習中
32909 人が学習中
之所以用focusin(),是因为他支持父元素上检测子元素失去焦点的情况。 一个一个移除太麻烦了。
闭关修行中......
使用 off 解绑就可以。
target.off('focusin');
示例:http://jsfiddle.net/UUPHq/
<input id="test" placeholder="点我"/> <span id="console"></span>
var target = $('#test'); var console = $('#console'); target.focusin(function() { console.text('focusin'); }); target.focusout(function() { console.text('focusout'); target.off('focusin'); });
使用 off 解绑就可以。
示例:http://jsfiddle.net/UUPHq/