使用 jquery 就地编辑并通过表单提交更新的内容

发布于 2025-01-06 13:23:28 字数 387 浏览 1 评论 0原文

这是我的场景...

在表单中,我使用一些 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 技术交流群。

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

发布评论

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

评论(1

找回味觉 2025-01-13 13:23:28

您是否尝试过使用 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.

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