尝试使动态创建的元素可拖动
我正在尝试创建一个可拖动的动态输入元素。现在的问题是我创建了一个元素,但是当我使用类似
$("#in"+index.toString()).draggable({cancel:true});
将其附加到容器 div 后的元素时,它不起作用。基本上它不适用于某个 id 的动态创建的输入元素。代码如下,有问题欢迎指出。我真的需要一些帮助来解决这个问题。谢谢!
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!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
问题是您正在创建一个未绑定到 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/