麻豆小视频在线观看_中文黄色一级片_久久久成人精品_成片免费观看视频大全_午夜精品久久久久久久99热浪潮_成人一区二区三区四区

首頁 > 編程 > JavaScript > 正文

jquery.form.js用法之清空form的方法

2019-11-20 20:58:32
字體:
來源:轉載
供稿:網友

本段代碼摘取自jquery.form.js中,由于覺得該方法的使用性非常強,同時也可獨立拿出來使用。
該段代碼言簡意賅可以很好的作為學習參考。

復制代碼 代碼如下:

/**
 * Clears the form data. Takes the following actions on the form's input fields:
 * - input text fields will have their 'value' property set to the empty string
 * - select elements will have their 'selectedIndex' property set to -1
 * - checkbox and radio inputs will have their 'checked' property set to false
 * - inputs of type submit, button, reset, and hidden will *not* be effected
 * - button elements will *not* be effected
 */
$.fn.clearForm = function(includeHidden) {
    return this.each(function() {
        $('input,select,textarea', this).clearFields(includeHidden);   //this表示設置上下文環(huán)境,有多個表單時只作用調用的表單
    });
};

$.fn.clearFields = $.fn.clearInputs = function(includeHidden) {
    var re = /^(?:color|date|datetime|email|month|number|password|range|search|tel|text|time|url|week)$/i; // 'hidden' is not in this list
    return this.each(function() {
        var t = this.type, tag = this.tagName.toLowerCase();
        if (re.test(t) || tag == 'textarea') {
            this.value = '';
        }
        else if (t == 'checkbox' || t == 'radio') {
            this.checked = false;
        }
        else if (tag == 'select') {
            this.selectedIndex = -1;
        }
        else if (t == "file") {
            if (/MSIE/.test(navigator.userAgent)) {
                 $(this).replaceWith($(this).clone(true));
            } else {
                 $(this).val('');
            }
       }
        else if (includeHidden) {
            // includeHidden can be the value true, or it can be a selector string
            // indicating a special test; for example:
            // $('#myForm').clearForm('.special:hidden')
            // the above would clean hidden inputs that have the class of 'special'
            if ( (includeHidden === true && /hidden/.test(t)) ||
                 (typeof includeHidden == 'string' && $(this).is(includeHidden)) ) {
                this.value = '';
            }
        }
    });
};

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 久久久精品视频国产 | 久久久久久亚洲国产精品 | 色婷婷一区二区三区 | 午夜偷拍视频 | 成人三级视频网站 | 一级黄色在线观看 | 日日摸夜夜骑 | www.guochanav.com| 一级黄色国产视频 | 亚洲自拍第二页 | 天天夜碰日日摸日日澡性色av | 欧美一级免费在线观看 | 最新午夜综合福利视频 | 羞羞视频在线免费 | 久久久久亚洲a | 亚洲男人天堂 | 色骚综合 | 精品成人av一区二区三区 | 72pao成人国产永久免费视频 | 久久久麻豆 | 欧美成人午夜 | 久久精品re | 国产精品视频久久久 | 久久精品在线免费观看 | 男女羞羞视频在线免费观看 | a级高清免费毛片av在线 | 99影视在线视频免费观看 | 欧美电影在线观看 | 亚洲一区二区三区视频免费 | 91网站链接 | 国产无限资源在线观看 | 久在线观看福利视频69 | 精品久久久久久久久久久久久久久久久久久 | 99最新网址 | 香蕉视频18 | 国产精品视频成人 | 一级毛片在线观看视频 | 久久综合给合久久狠狠狠97色69 | 狠狠干夜夜操 | 中文字幕在线亚洲 | 石原莉奈日韩一区二区三区 |