尝试使动态创建的元素可拖动

发布于 2024-12-03 20:08:49 字数 329 浏览 0 评论 0原文

我正在尝试创建一个可拖动的动态输入元素。现在的问题是我创建了一个元素,但是当我使用类似

$("#in"+index.toString()).draggable({cancel:true});

将其附加到容器 div 后的元素时,它不起作用。基本上它不适用于某个 id 的动态创建的输入元素。代码如下,有问题欢迎指出。我真的需要一些帮助来解决这个问题。谢谢!

http://jsfiddle.net/ithril/hRCun/5/

I'm trying to create a dynamic input element that is draggable. Now the problem is I create an element but when I use something like

$("#in"+index.toString()).draggable({cancel:true});

after I append it to the container div, it's not working. Basically it's not working for the dynamically created input element of a certain id. Here's the code and please feel free to point out problems. I could really use some help on this one. Thanks!

http://jsfiddle.net/ithril/hRCun/5/

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

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

发布评论

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

评论(1

情绪操控生活 2024-12-10 20:08:49

问题是您正在创建一个未绑定到 UI 功能的新元素。我建议使用clone(true,true),然后根据需要更改克隆元素的参数。您可以在此处了解有关克隆的更多信息。 http://api.jquery.com/clone/

The problem is that you are creating a new element that is not bound to the UI functions. I would suggest using clone(true,true) and then changing the parameters of the cloned element as need be. You can learn more about clone here. http://api.jquery.com/clone/

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