书中讲到jQuery自定义事件时举了这样一个例子,使用自定义事件来移除container中的tooltip,而别的container中的tooltip不受影响:
请问代码中的$tooltip是什么?为什么这样做就会 each tooltip will listen to its container?跟事件冒泡有关吗?
中文版在此:
http://www.itxueyuan.org/view/6933.html谢谢。
But implementing this behavior with event logic rather than selector logic is easy.
// $container could be $('#sidebar') or $(document)
$container.triggerHandler('newTooltip');
$
container.one('newTooltip', function() {
$tooltip.remove();
});
(Notice the use of jQuery’s one instead of on. The difference is that one automatically removes the handler after it fires.)
With these two lines of code, each tooltip will listen to its container and remove itself when the container gets a new tooltip.
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
https://www.v2ex.com/t/195984
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.