首頁  >  文章  >  web前端  >  jQuery原始碼解讀之removeAttr()方法分析_jquery

jQuery原始碼解讀之removeAttr()方法分析_jquery

WBOY
WBOY原創
2016-05-16 16:13:311259瀏覽

本文較為詳細的分析了jQuery源碼解讀之removeAttr()方法。分享給大家供大家參考。具體分析如下:

擴充jQuery原型物件的方法:

複製程式碼 程式碼如下:
jQuery.fn.extend({
//name,傳入要DOM元素要移除的屬性名稱。
    removeAttr: function( name ) {

//使用jQuery.fn對象,即jQuery原型對象的each方法遍歷當前選擇器選擇的jQuery對象數組,並返回該jQuery對像以便鍊式調用。
        return this.each(function() {
//呼叫jQuery的全域方法removeAttr,傳入遍歷出的DOM物件this和要移除的屬性名稱name。
            jQuery.removeAttr( this, name );
        });
    }
});

jQuery的全域方法removeAttr

複製程式碼 程式碼如下:
//擴充jQuery物件的全域方法
jQuery.extend({

//elem為遍歷出的每個DOM對象,value為要移除的屬性名稱。
    removeAttr: function( elem, value ) {
        var name, propName,
            i = 0,
//rnotwhite為(/S /g)
//如果value為" ",則邏輯與表達式的值為null
//如果value假設為"title href",則由於邏輯與運算元的兩個運算元都不是布林值,則傳回第二個運算元為["title", "href"]。
//match是JavaScript字串的方法,在字串內檢索指定的值,或找到一個或多個正規表示式的匹配,返回存放匹配結果的陣列。其他類型都會報錯。
            attrNames = value && value.match( rnotwhite );
//如果attrNames不為null,且目前DOM物件的節點類型為1,進入if語句區塊,否則跳出函數,結束本次遍歷,開始下次遍歷。
        if ( attrNames && elem.nodeType === 1 ) {
//此時attrNames是個裝有要移除屬性名稱的數組,即["title", "href"]
//執行while循環,這種寫法的意思是,先從attrNames取出一個元素賦值給name, i自增1,然後判斷name是否有值,有值,進入循環執行,執行完畢後開始下次循環,直到name無值,跳出循環。
            while ( (name = attrNames[i ]) ) {
//如果屬性名稱與js關鍵字同名的如"for"和"class",則替換為"htmlFor"和"className"。
                propName = jQuery.propFix[ name ] || name;

//如果是布林值屬性特別對待
                if ( jQuery.expr.match.bool.test( name ) ) {
//getSetInput偵測Input元素是否支援getAttribute("value")
//getSetAttribute偵測是否支援設定駝峰命名格式的屬性名稱
//!ruseDefault.test( name )不區分大小寫偵測name是否為checked或selected屬性,
                    if ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) {
//移除布林值屬性其實是給布林值屬性賦值為false
                        elem[ propName ] = false;
                    } else {
//支援ie9以下
//將"default-checked"這種屬性轉換為"defaultChecked",並賦值false
                        elem[ jQuery.camelCase( "default-" name ) ] =
                            elem[ propName ] = false;
                    }
                } else {
//如果不是布林值屬性,呼叫jQuery的全域attr方法設定屬性
                    jQuery.attr( elem, name, "" );
                }
//getSetAttribute用來測試setAttribute是否支援設定駝峰命名形式的屬性名,如果可以,使用setAttribute和getAttribute時,需要使用修正後的屬性名。 (相容ie6/7)
//如果getSetAttibute等於false,說明不支持,則使用修正後的屬性名,支持,使用原始的屬性名稱。
//呼叫DOM原生的removeAttribute方法,移除屬性
                elem.removeAttribute( getSetAttribute ? name : propName );
            }
        }
    }
});


關鍵字屬性修正
複製程式碼 程式碼如下:
jQuery.extend({
    修改:{
        "for": "htmlFor",
        "class": "className"
    }
});
jQuery.extend({
    駝峰命名法:函數(字串){
        return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase );
    }
});
var nodeHook, boolHook,
    attrHandle = jQuery.expr.attrHandle,
    ruseDefault = /^(?:checked|selected)$/i,
    getSetAttribute = support.getSetAttribute,
    getSetInput = support.input;
// 設定
div = document.createElement( "div" );
div.setAttribute( "className", "t" );
div.innerHTML = " 
a";
a = div.getElementsByTagName("a")[ 0 ];
// 第一批測驗。 select = document.createElement("select");
opt = select.appendChild( document.createElement("option") );
input = div.getElementsByTagName("input")[ 0 ];
a.style.cssText = "頂部:1px";
// 在camelCase類別上測試setAttribute。 support.getSetAttribute = div.className !== "t";

偵測input是否支援getAttribute("value")

複製程式碼程式碼如下://支援:僅IE8
// 檢查我們是否可以信任 getAttribute("value")
input = document.createElement( "input" );
input.setAttribute( "value", "" );
support.input = input.getAttribute( "value" ) === "";

偵測是否布林值屬性

複製程式碼程式碼如下:booleans = "checked|selected|async|autofoc|au| defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",
matchExpr = {     "bool": new RegExp( "^(?:" 布林值 ")$", "i" )

},

希望本文對大家介紹的 jQuery 程式設計有幫助。
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn