国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 語言 > JavaScript > 正文

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

2024-05-06 16:00:54
字體:
供稿:網(wǎng)友
這篇文章主要介紹了jquery清空表單數(shù)據(jù)的示例,需要的朋友可以參考下

復制代碼 代碼如下:


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

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表

圖片精選

主站蜘蛛池模板: 广平县| 温宿县| 德保县| 温泉县| 斗六市| 湘潭市| 西乌| 天柱县| 信丰县| 高邮市| 华容县| 社会| 襄汾县| 昌黎县| 黄大仙区| 宜丰县| 太湖县| 鹿邑县| 赤城县| 精河县| 晋城| 清远市| 师宗县| 富蕴县| 梁山县| 盐池县| 高碑店市| 宁津县| 邓州市| 华蓥市| 乌兰察布市| 富裕县| 嘉兴市| 黄石市| 邹平县| 浑源县| 铁力市| 繁昌县| 茶陵县| 宕昌县| 皮山县|