国产探花免费观看_亚洲丰满少妇自慰呻吟_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ā)表

圖片精選

主站蜘蛛池模板: 神池县| 磐石市| 隆回县| 汝阳县| 鹤岗市| 闻喜县| 罗山县| 明水县| 石首市| 重庆市| 凌海市| 长乐市| 衡阳县| 乐山市| 南召县| 威海市| 铜梁县| 曲水县| 康乐县| 苍梧县| 濮阳县| 城步| 竹溪县| 安康市| 芜湖市| 青神县| 宁武县| 吉木乃县| 荆州市| 毕节市| 呼图壁县| 南郑县| 牟定县| 乡城县| 灵山县| 融水| 孟州市| 临沧市| 饶阳县| 孝昌县| 长葛市|