最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

jquery清空表單數(shù)據(jù)示例分享

 更新時(shí)間:2014年02月13日 09:45:42   作者:  
這篇文章主要介紹了jquery清空表單數(shù)據(jù)的示例,需要的朋友可以參考下

復(fù)制代碼 代碼如下:

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

相關(guān)文章

最新評(píng)論

奉化市| 静海县| 安仁县| 鹿邑县| 开远市| 新乡县| 江门市| 扎鲁特旗| 军事| 大竹县| 双城市| 菏泽市| 阳朔县| 普洱| 涪陵区| 乌海市| 通城县| 喀喇沁旗| 绿春县| 沽源县| 上饶县| 恩施市| 神木县| 伊吾县| 阿克陶县| 温宿县| 穆棱市| 巴林左旗| 阿坝| 瓦房店市| 应用必备| 苗栗县| 阿克陶县| 吐鲁番市| 于田县| 江陵县| 赤城县| 郓城县| 叶城县| 桦甸市| 嘉荫县|