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 UJS 如何知道文档何时准备就绪并开始将事件附加到选定元素?
就我而言,它似乎太早开始绑定(未加载文档)。
jquery_ujs使用委托来处理事件(从 3.2 开始,Rails 4 可以使用.on):
jquery_ujs
.on
$(document).delegate(...)
所以没有对元素的绑定。所有事件都绑定到document选择器并由选择器过滤。
document