Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在阅读一个 jQuery 插件,发现了一个奇怪的事件(至少对我来说)表达式,如下所示:
$(this).find('ul:first').bind('scroll.sticky', function(e) { //some code; });
问题是“.sticky”是什么意思?我只知道“滚动”部分。我试图搜索 jQuery 文档但没有找到任何东西。你能指出我正确的页面吗?
非常感谢。
这些是命名空间事件。
参考:https ://api.jquery.com/event.namespace/