使用动态ID重置表单

时间:2018-08-02 18:12:22

标签: jquery html forms

表单如下:

<form id="yui_3_17_2_1_1533233239059_403"><input placeholder="Type to search…" type="text" spellcheck="false" value="boy" id="yui_3_17_2_1_1533233239059_402"></form>

ID是动态的。页面加载后,我需要清除其输入文本。

不知道如何确定动态ID。

$(".reset").click(function() {
    $(this).closest('form').find("input[type=text], textarea").val("");
});

我想像的东西可以改编。

1 个答案:

答案 0 :(得分:1)

如果这是页面中唯一的表格,那么就这么简单:

$(".reset").click(function() {
    $('form')[0].reset();
});