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.
我知道.on当元素上发生某些事件时,我可以使用将函数绑定到 DOM 元素。
.on
我一直在使用 JQuery-ui,我想在页面上加载不同的 JQuery-ui 元素后创建它们。例如,在页面上加载按钮时创建一个按钮:
$(document.body).on('load', '.my-button', function(){ $(this).button() });
但是,这不起作用(实际上,处理程序永远不会到达)。
在 DOM 中加载时如何创建 JQuery-ui 小部件?
创建元素时,jQuery 不会触发任何事件。相反,使用watch 插件button()并从那里运行你的 s。
button()