如何重置文本字符串(只是表单的一部分)中的 HTML 字段? (最好使用 jQuery)

发布于 2024-12-01 22:06:17 字数 482 浏览 1 评论 0原文

可能的重复:
如何我清除了可变html内容中的所有字段? (最好使用 jQuery)

这个问题的答案找不到在这个问题中找到:使用 jQuery 清空表单,因为我没有要连接的表单 ID。

我有一个文本字符串,其值为 HTML 代码片段,其中包含一些表单元素,并带有预填充的值。必须清除/重置此代码片段中(仅)找到的所有字段。

Possible Duplicate:
How do I clear all the fields in a variable html content? (preferably with jQuery)

The answer of this question is not find in this question: Blank out a form with jQuery, since I have no form ID to connect to.

I have a text string with a value of a HTML code snippet that has some form elements within, with pre filled values​​. All fields that are found in this code snippet (only) must be cleared/reset.

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

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

发布评论

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

评论(2

怎言笑 2024-12-08 22:06:17

您可以创建一个表单,用您的字符串填充它,然后然后重置它,如下所示:

var myForm = $('<form>').html(your_string).
                find(':input').not(':button, :submit, :reset, :hidden').
                val('').removeAttr('checked').removedAttr('selected');

然后只需访问myForm<的innerHTML即可/代码>。

You could just create a form, populate it with your string, and then reset it, like so:

var myForm = $('<form>').html(your_string).
                find(':input').not(':button, :submit, :reset, :hidden').
                val('').removeAttr('checked').removedAttr('selected');

Then it's just a matter of accessing the innerHTML of myForm.

吐个泡泡 2024-12-08 22:06:17

假设您有一个像这样的文本字符串:

var txt = '<form id="search" action="/search" method="get" autocomplete="off"><div><input autocomplete="off" name="q" type="text" value="sample"></div></form>'
var $form = $(txt);

$form[0].reset();

var resetTxt = $form.html();

Assuming you have a text string like this:

var txt = '<form id="search" action="/search" method="get" autocomplete="off"><div><input autocomplete="off" name="q" type="text" value="sample"></div></form>'
var $form = $(txt);

$form[0].reset();

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