84669 orang belajar
152542 orang belajar
20005 orang belajar
5487 orang belajar
7821 orang belajar
359900 orang belajar
3350 orang belajar
180660 orang belajar
48569 orang belajar
18603 orang belajar
40936 orang belajar
1549 orang belajar
1183 orang belajar
32909 orang belajar
之所以用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/