js清空Form(基于jquery)

来源:互联网 发布:网络教育第二本科证书 编辑:程序博客网 时间:2024/06/08 19:28
// 清空form表单function clearForm(form) {$(':input', form).each(function() {var type = this.type;var tag = this.tagName.toLowerCase();if (type == 'text' || type == 'password' || tag == 'textarea') {this.value = "";} else if (type == 'checkbox' || type == 'radio') {this.checked = false;} else if (tag == 'select') {this.selectedIndex = -1;}});};

0 0
原创粉丝点击