将 jqueryUI 交互属性应用于新添加的 DOM 元素?
因此,我从定义为 .sortable 的 class="list" 元素开始。现在,如果我通过 jquery 创建 class="list" 的另一个元素,它不会继承我已经定义的相同定义。
现在,我通过将定义放入函数中,然后在初始加载时以及每次添加新元素时调用该函数来解决这个问题。这是最好的方法吗?或者有更合适的方法来做到这一点?
So I start off with an element of class="list" that are defined as .sortable. Now if I create another element of class="list" via jquery, it does not inherit the same definition that I had already defined.
Now, I got around that by throwing the definition into a function and then call the function upon initial load and as well as every time I add a new element. Is this the best method? Or is there a more appropriate method of doing this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能需要 jQuery 的 .live() 函数。这会将事物绑定到稍后添加的 DOM 元素。
You probably want jQuery's .live() function. This will bind things to DOM elements added later.