欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

jquery清空表单数据示例代码分享

程序员文章站 2023-11-01 15:46:40
jquery清空表单数据示例代码如下: function clearform(form) {   // iterate over all of the inputs...

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;
  });
};