使用 jquery 就地编辑并通过表单提交更新的内容
这是我的场景...
在表单中,我使用一些 jquery 编辑来允许用户编辑某些内容。我需要的是将此编辑的内容以表格形式提交。我想也许我可以使用 jQuery 克隆函数来“拾取”div 并将其复制到隐藏的表单字段中,但现在我面临的问题是,虽然显示的文本发生了变化,但源代码实际上保持不变。 ..所以我不确定这是否有效。
谁能告诉我我能做什么?我有什么办法可以做到这一点吗?有人可以建议其他想法吗?
Miro
UPDATE----------------------
自那以后设法让它更新源代码......所以现在我只剩下问题的第二部分...
有没有办法使用 jQuery 克隆函数来选取特定的 div,并将其整个内容复制到隐藏的文本字段中?
米罗
this is my scenario...
In a form, i am using some jquery edit in place to allow users to edit some content. What i need, is for this edited content to be submitted in the form. I thought maybe i can use the jQuery clone function to 'pick up' the div and copy it into a hidden form field, but now i am faced with the problem that although the displayed text is changed, the source code actually stays the same... so im not sure this will work.
Can anyone advice me what i could do? Is there any way i can do this? Any other ideas someone can suggest?
Miro
UPDATE----------------------
Have since managed to get it to update the source code... So now i am left with the second part of the problem...
Is there a way to use the jQuery clone function to pick up a specific div, and copy its entire content into a hidden text field?
Miro
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否尝试过使用 Ajax 来执行此类操作?
请看一下: http://api.jquery.com/jQuery.ajax/
当用户停止编辑某些内容(例如,焦点从字段更改或输入命中) - 发送 $.ajax 到您的 Web 服务和方法更新数据或类似的内容。
Have you ever tried to use Ajax for those kind of actions?
please have a look: http://api.jquery.com/jQuery.ajax/
When the user stop editing something (e.g. focus changed from the field or enter hit) - send $.ajax to you web service and method update data or something like that.