jquery清空表单数据示例分享
更新时间:2014年02月13日 09:45:42 作者:
这篇文章主要介绍了jquery清空表单数据的示例,需要的朋友可以参考下
复制代码 代码如下:
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;
});
};
您可能感兴趣的文章:
相关文章
jQuery获取所有父级元素及同级元素及子元素的方法(推荐)
这篇文章主要介绍了jQuery获取所有父级元素及同级元素及子元素的方法,本文给大家介绍的非常详细,具有参考借鉴价值 ,需要的朋友可以参考下2018-01-01
最新评论