使用 jQuery UI,键盘编辑后无法删除可删除的文本区域
我正在使用 jQuery UI。代码示例如下: http://jsfiddle.net/ekzhu/H4GjU/
中的项目 < code>#elements 应拖放到文本区域上。然而,在文本区域上进行一些键盘编辑后,它不能再被删除。
谁能告诉我问题是什么以及如何解决它?
更新:
谢谢我的朋友刚刚向我建议了一个解决方案。我应该使用 .val()
而不是 .html()
和 .text()
。 $('textarea').html()
将返回最初在 textarea 标记之间设置的内容。 $('textarea').val()
将返回文本区域中当前的内容。
I am using jQuery UI. The code example is here: http://jsfiddle.net/ekzhu/H4GjU/
The items in #elements
should be dragged and dropped onto the textarea. However, after some keyboard editing on the textarea, it can no longer be dropped.
Could anyone tell me what the problem is and how can I fix it?
Update:
Thanks my friend just suggested me a solution. I should've used .val()
instead of .html()
and .text()
. $('textarea').html()
will return what was originally set in between the textarea tags. $('textarea').val()
will return what is currently in the textarea.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你也可以使用这个:
});
此网址:
单击此处
you also can use this :
});
this url:
Click Here