将 jqueryUI 交互属性应用于新添加的 DOM 元素?

发布于 2024-12-06 03:17:56 字数 279 浏览 2 评论 0原文

因此,我从定义为 .sortable 的 class="list" 元素开始。现在,如果我通过 jquery 创建 class="list" 的另一个元素,它不会继承我已经定义的相同定义。

现在,我通过将定义放入函数中,然后在初始加载时以及每次添加新元素时调用该函数来解决这个问题。这是最好的方法吗?或者有更合适的方法来做到这一点?

http://jsfiddle.net/S24d4/11/

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?

http://jsfiddle.net/S24d4/11/

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

旧情勿念 2024-12-13 03:17:56

您可能需要 jQuery 的 .live() 函数。这会将事物绑定到稍后添加的 DOM 元素。

You probably want jQuery's .live() function. This will bind things to DOM elements added later.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文