function clearForm(form) {
// 迭代表单
的所有输入 // 传入
的元素 $(':input', form).each(function() {
var type = this.type;
var tag = this.tagName.toLowerCase(); // 标准化大小写
// 可以重置文本输入的值 attr,
// 密码输入和文本区域
if (type == ' text' || type == 'password' || tag == 'textarea')
this.value = "";
// 复选框和单选按钮需要清除其选中状态
// 但是不应该*更改其“值”
else if (type == 'checkbox' || type == 'radio')
this.checked = false;
// 选择需要具有的元素他们的 'selectedIndex' 属性设置为 -1
// (这适用于单个和多个选择元素)
else if (tag == 'select')
this.selectedIndex = -1;
});
};