时间:2021-05-26
复制代码 代码如下:
function clearForm(form) {
// iterate over all of the inputs for the form
// element that was passed in
$(':input', form).each(function() {
var type = this.type;
var tag = this.tagName.toLowerCase(); // normalize case
// it's ok to reset the value attr of text inputs,
// password inputs, and textareas
if (type == 'text' || type == 'password' || tag == 'textarea')
this.value = "";
// checkboxes and radios need to have their checked state cleared
// but should *not* have their 'value' changed
else if (type == 'checkbox' || type == 'radio')
this.checked = false;
// select elements need to have their 'selectedIndex' property set to -1
// (this works for both single and multiple select elements)
else if (tag == 'select')
this.selectedIndex = -1;
});
};
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
前段时间在租个后台的项目,有两处需要一键清空表单数据一、表单筛选后,需要可以一键清空或者恢复初始化筛选条件初始化查询数据:1.在created钩子深拷贝了一份数
参考:jquery表单清空$(':input','#myform').not(':button,:submit,:reset,:hidden').val('')
下面介绍jquery提交表单mvc3后台处理示例。 JQuery提交表单: 代码如下:$(document).ready(function(){$("#
本文实例讲述了JQuery异步提交表单与文件上传功能。分享给大家供大家参考,具体如下:Jquery.form.js是一个可以异步提交表单及上传文件的插件。示例如
HTML表单提交后,返回,保留表单数据Html如何使表达提交后,点回退/返回,保留表单数据?如果a页是一个表单,提交时因某种原因转至出错页面b,如何在b中返回已