我想知道如何使用jQuery重置特定的表单字段。
我正在使用以下功能:
function resetForm(id) {
$('#'+id).each(function(){
this.reset();
});
}
但它正在重置所有字段。有没有办法使用jQuery或JavaScript重置特定字段?我想只重置一个特定的字段。
答案 0 :(得分:18)
function resetForm(id) {
$('#' + id).val(function() {
return this.defaultValue;
});
}
不使用id的示例:
答案 1 :(得分:9)
reset()
方法通过设计影响整个表单,仅重置特定的input
元素,假设有一个重置上一个输入element after each
输入`:
$('button.reset').click(
function(){
var input = $(this).prev('input:first');
input.val(''); // assuming you want it reset to an empty state;
});
要将input
重置为原始状态,首先我建议将原始值存储在data-*
属性中以供回忆:
$('input').each(
function(){
$(this).attr('data-originalValue',$(this).val());
});
$('button.reset').click(
function(){
var input = $(this).prev('input:first');
input.val(input.attr('data-originalValue'));
});
给定类似于以下内容的HTML(其中input
元素组合在一起):
<form action="#" method="post">
<fieldset>
<input value="something" />
<button class="reset">Reset the input</button>
</fieldset>
<fieldset>
<input type="checkbox" name="two" />
<input type="checkbox" name="two" checked />
<input type="checkbox" name="two" />
<button class="reset">Reset the input</button>
</fieldset>
<fieldset>
<input type="radio" name="three" checked />
<input type="radio" name="three" />
<button class="reset">Reset the input</button>
</fieldset>
</form>
以下jQuery会将input
元素重置为其页面加载状态:
$('button.reset').click(
function () {
$(this).prevAll('input').val(function(){
switch (this.type){
case 'text':
return this.defaultValue;
case 'checkbox':
case 'radio':
this.checked = this.defaultChecked;
}
});
});
参考文献:
答案 2 :(得分:2)
我的方法是考虑三种情况:基于自由输入的字段,基于检查的字段和基于选择的字段。
$(set_of_fields).each(function() {
// Don't bother checking the field type, just check if property exists
// and set it
if (typeof(this.defaultChecked) !== "undefined")
this.checked = this.defaultChecked;
if (typeof(this.defaultValue) !== "undefined")
this.value = this.defaultValue;
// Try to find an option with selected attribute (not property!)
var defaultOption = $(this).find('option[selected]');
// and fallback to the first option
if (defaultOption.length === 0)
defaultOption = $(this).find('option:first');
// if no option was found, then it was not a select
if (defaultOption.length > 0)
this.value = defaultOption.attr('value');
});
编辑:我发现这不适用于<select multiple>
字段。
答案 3 :(得分:-4)
你可以这样做(如果你打算使用reset() javascript方法):
function resetForm(id) {
document.getElementById(id).reset();
}
不需要jQuery,因为“reset”方法是标准的javascript方法