admin管理员组文章数量:1344328
Is it somehow possible to restore only a part of a form? For example I want to reset everyhting in fieldset
#1 but keep all other values in fieldset
#2:
<form>
<fieldset id="1">…</fieldset>
<fieldset id="2">…</fieldset>
</form>
I could of course use a JavaScript-/jQuery-solution like this (written by heart, not tested):
$('#1 :input').val('');
But this wouldn't restore previously set default values. Or I must store all default values beforehand and I have to check for textareas, inputs, checkboxes etc … Is there another way of doing this?
Is it somehow possible to restore only a part of a form? For example I want to reset everyhting in fieldset
#1 but keep all other values in fieldset
#2:
<form>
<fieldset id="1">…</fieldset>
<fieldset id="2">…</fieldset>
</form>
I could of course use a JavaScript-/jQuery-solution like this (written by heart, not tested):
$('#1 :input').val('');
But this wouldn't restore previously set default values. Or I must store all default values beforehand and I have to check for textareas, inputs, checkboxes etc … Is there another way of doing this?
Share asked Sep 21, 2012 at 11:40 insertusernamehereinsertusernamehere 23.6k10 gold badges91 silver badges128 bronze badges 1- 2 I'm afraid there's no other way of doing it but storing initial values and setting them later :/ – scumah Commented Sep 21, 2012 at 11:43
4 Answers
Reset to default 4Not sure if this is what you meant, but this will filter all fieldsets which do not have an id
of two
and then reset the form elements within those fieldsets to their default values (please note that defaultValue
will only work for input/textareas!):
$(document).ready(function() {
$('#btn-reset').on('click', function(e) {
e.preventDefault();
$('form > fieldset').filter(function() {
return $(this).prop('id') !== 'two';
}).children(':input').each(function() {
$(this).val(this.defaultValue);
});
});
});
example markup
<form>
<fieldset id="one">
<input type="text" value="this is a default value" />
<textarea>this is another default value</textarea>
<p>this paragraph doesn't get looped over</p>
</fieldset>
<fieldset id="two">
<input type="text" value="text here.." />
<textarea>hello world!</textarea>
</fieldset>
<button id="btn-reset">Reset</button>
</form>
Here's a fiddle
Change all of the values, then click reset, all of the values in the first fieldset will be reset to their default values, whilst the second set will remain untouched.
There is no way of doing this without JavaScript... The reset button will always reset the whole form element.
Hope this will solve your problem
http://www.electrictoolbox./jquery-clear-form/
You can do this using KnockoutJS. Create a view model with default values.
本文标签: javascriptReset only a fieldset within a form and keep all other valuesStack Overflow
版权声明:本文标题:javascript - Reset only a fieldset within a form and keep all other values - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743771661a2536229.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论