首頁  >  文章  >  web前端  >  javascript中attribute和property的區別詳解_基礎知識

javascript中attribute和property的區別詳解_基礎知識

WBOY
WBOY原創
2016-05-16 16:46:091434瀏覽

DOM元素的attribute和property很容易混倄在一起,分不清楚,兩者是不同的東西,但是兩者又聯繫緊密。很多新手朋友,也包括以前的我,常常會搞不清楚。

attribute翻譯成中文術語為“特性”,property翻譯成中文術語為“屬性”,從中文的字面意思來看,確實是有點區別了,先來說說attribute。

attribute是一個特性節點,每個DOM元素都有對應的attributes屬性來存放所有的attribute節點,attributes是一個類別數組的容器,說得準確點就是NameNodeMap,總之就是一個類似數組但又和陣列不太一樣的容器。 attributes的每個數字索引以名值對(name=”value”)的形式存放了一個attribute節點。

複製程式碼 代碼如下:
hello

上面的div元素的HTML程式碼中有class、id還有自訂的gameid,這些特性都存放在attributes中,類似下面的形式:
複製代碼 代碼如下:
[ class="box", id="box", gameid="880" ]

可以這樣來存取attribute節點:
複製程式碼 程式碼如下:var elem = document.getElementById( 'box' );
console.log( elem.attributes[0].name ); // class
console.log( elem.attributes[0].value ); // box



但是IE6-7將許多東西都存放在attributes中,上面的存取方法和標準瀏覽器的回傳結果又不同。通常要取得attribute節點直接用getAttribute方法:


複製程式碼 程式碼如下: elem.getAttribute('gameid') ); // 880
要設定一個attribute節點使用setAttribute方法,要刪除就用removeAttribute:

複製程式碼 程式碼如下:elem.setAttribute('testAttr', 'testVal'); >console.log( elem.removeAttribute('gameid') ); // undefined
attributes是會隨著新增或刪除attribute節點動態更新的。
property就是一個屬性,如果把DOM元素看成是一個普通的Object對象,那麼property就是一個以名值對(name=”value”)的形式存放在Object中的屬性。要新增和刪除property也簡單多了,和普通的物件沒啥分別:



複製程式碼

程式碼如下: elem.gameid = 880; // 新增console.log( elem.gameid ) // 取得
delete elem.gameid // 刪除



之所以attribute和property容易混倄在一起的原因是,很多attribute節點還有一個相對應的property屬性,比如上面的div元素的id和class既是attribute,也有對應的property,不管使用哪種方法都可以存取和修改。

複製程式碼

程式碼如下:console.log( elem.getAttribute('id') ); // boxconsole.log( elem.id ); // box
elem.id = 'hello';
console.log( elem.getAttribute('id') ); // hello



但是對於自訂的attribute節點,或是自訂property,兩者就沒有關係了。


複製程式碼

程式碼如下:console.log( elem.getAttribute('gameid' ); // 880console.log( elem.gameid ); // undefined
elem.areaid = '900';
console.log( elem.getAttribute('areaid') ) // null



對於IE6-7來說,沒有區分attribute和property:

複製程式碼

程式碼如下:

console.log( elem.getAttribute('gameid') ); // 880
console.log( elem.gameid ); // 880
elem.areaid = '900';
console.log( elem.getAttribute('areaid') ) // 900

很多新手朋友估計都很容易掉進這個坑。
DOM元素一些預設常見的attribute節點都有與之對應的property屬性,比較特殊的是一些值為Boolean類型的property,如一些表單元素:

複製程式碼 程式碼如下:


var radio = document.getElementById( 'radio' );
console.log( radio.getAttribute('checked') ); // checked
console.log( radio. checked ); // true

對於這些特殊的attribute節點,只有存在該節點,對應的property的值就為true,如:

複製程式碼 程式碼如下:


var radio = document.getElementById( 'radio' );
radio = document.getElementById( 'radio' );
radio> console.log( radio.getAttribute('checked') ); // anything
console.log( radio.checked ); // true

最後為了更好的區分attribute和property,基本上可以總結為attribute節點都是在HTML程式碼中可見的,而property只是一個普通的名值對屬性。

程式碼如下:


// gameid和id都是attribute節點
// id同時又可以透過property來存取和修改
hello

// areaid只是property
elem.areaid = 900 ;
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn