我有一个包含两个字段集的表单,而这两个字段集又有输入文本框。
<form id= "form1" class= "form">
<fieldset id="abc">
<input type = "text" name="a">
<input type = "text" name="b">
</fieldset>
<fieldset id="xyz">
<input type = "text" name="x">
<input type = "text" name="y">
<input type = "text" name="z">
</fieldset>
</form>
我很感激,如果有人可以帮我修改一个javascript,它将重置fieldset“xyz”的输入框而不更改fieldset“abc”中输入框中的值。
由于