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 选择的插件进行多个选择控制,当我将 pjax 包含到我的项目中时,选择在我重定向到链接后不起作用。但是如果我按 F5 选择现在可以工作
发生这种情况是因为选择应用于文档就绪事件。当 Ajax 文档就绪事件更新的 smth 未被触发时。您应该在 Ajax 完成后应用选择。例如在咖啡脚本中:
$(document).ajaxComplete -> $('select').chosen()