溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

JS中DOM元素的attribute與property屬性示例詳解

發(fā)布時(shí)間:2020-10-23 20:03:18 來(lái)源:腳本之家 閱讀:172 作者:xiaobe 欄目:web開(kāi)發(fā)

一、'表親戚':attribute和property

為什么稱(chēng)attribute和property為'表親戚'呢?因?yàn)樗麄兗扔泄餐?也有不同點(diǎn).

attribute 是 dom 元素在文檔中作為 html 標(biāo)簽擁有的屬性;

property 是 dom 元素在 js 中作為對(duì)象擁有的屬性。

從定義上可以看出:

  • 對(duì)于 html 的標(biāo)準(zhǔn)屬性來(lái)說(shuō),attribute 和 property 是同步的,是會(huì)自動(dòng)更新的
  • 但是對(duì)于自定義的屬性來(lái)說(shuō),他們是不同步的.(自定義屬性不會(huì)自動(dòng)添加到property)
  • property 的值可以改變;attribute 的值不能改變

二、 兩者輸出形式

1、分別打印兩個(gè)值

打印attribute屬性

//html
<div class="divClass" id="divId" ></div>

//js
window.onload = function(){
 var divId = document.getElementById('divId');
 console.log(divId.attributes);
}

JS中DOM元素的attribute與property屬性示例詳解

可以看見(jiàn)attributes對(duì)應(yīng)的值,我們打印一下:

console.log(divId.attributes[0]); //打印 class="divClass"
console.log(divId.attributes.class) //打印 class="divClass"

console.log(divId.getAttribute('class')) //打印divClass
console.log(divId.getAttribute('id')) //打印divId

發(fā)現(xiàn)上面兩組值是相等的.

雖然都可以取值,但《js高級(jí)程序設(shè)計(jì)》中提到,為了方便操作,建議大家用setAttribute()和getAttribute()來(lái)操作即可。

打印property

html自帶的dom屬性會(huì)自動(dòng)轉(zhuǎn)換成property,但是自定義的屬性沒(méi)有這個(gè)'權(quán)利'

直接把div標(biāo)簽當(dāng)作對(duì)象,用'.'輸出即是property屬性

但是注意!property是不能輸出自定義屬性的

<div class="divClass" id="divId" addUserDefine="zidingyi"></div>

console.log(divId.class);  //打印 divClass
console.log(divId.addUserDefine) //打印 undefined

JS中DOM元素的attribute與property屬性示例詳解

打開(kāi)Elements的properties可以看到,dom存在的屬性,property同樣繼承了,而addUserDefine卻沒(méi)有出現(xiàn)在property中

property:

var obj = {};
Object.defineProperty(obj,'name',{
 value:'Property'
})

console.log(obj.name) //打印 Property

三、用例子解析兩者賦值

如果我們修改了property的值

//html
<input value="initValue" id="ipt"/>

//js
window.onload = function(){
 var ipt = document.getElementById('ipt');

 ipt.value = 'changeValue'
 console.log(ipt.value);
 console.log(ipt.getAttribute('value'));
}

猜一下結(jié)果??

答案是:

console.log(ipt.value);   //changeValue
console.log(ipt.getAttribute('value'));  //initValue

我們?cè)賮?lái)看看input的值

JS中DOM元素的attribute與property屬性示例詳解

難以置信?

我們?cè)賮?lái)看看從修改attribute入手

//html
<input value="initValue" id="ipt"/>

//js
window.onload = function(){
 var ipt = document.getElementById('ipt');

 ipt.setAttribute('value','changeValue')
 console.log(ipt.value);
 console.log(ipt.getAttribute('value'));

}

輸出:

console.log(ipt.value);   //changeValue
console.log(ipt.getAttribute('value'));  //changeValue

總結(jié)如下:

  • property比attribute'霸道',估計(jì)是'表哥'
  • property和attribute兩者是屬于單方面通信,即:

1.property能夠從attribute中得到同步;

2.attribute不會(huì)同步property上的值;

再啰嗦一句:

對(duì)屬性Property可以賦任何類(lèi)型的值,而對(duì)特性Attribute只能賦值字符串!

//js
var obj = {
 value : false,
}

var ipt = document.getElementById('ipt');

obj.value = true;  //property更改
ipt.setAttribute('value',true) //attribute更改

console.log(typeof obj.value); //boolean
console.log(obj.value)   //true

console.log(typeof ipt.value) //string
console.log(ipt.value);   //true

小結(jié)

分析了這么多,對(duì)property和attribute的區(qū)別理解也更深了,在這里總結(jié)一下:

創(chuàng)建

  • DOM對(duì)象初始化時(shí)會(huì)在創(chuàng)建默認(rèn)的基本property;
  • 只有在HTML標(biāo)簽中定義的attribute才會(huì)被保存在property的attributes屬性中;
  • attribute會(huì)初始化property中的同名屬性,但自定義的attribute不會(huì)出現(xiàn)在property中;
  • attribute的值都是字符串;

數(shù)據(jù)綁定

  • attributes的數(shù)據(jù)會(huì)同步到property上,然而property的更改不會(huì)改變attribute;
  • 對(duì)于value,class這樣的屬性/特性,數(shù)據(jù)綁定的方向是單向的,attribute->property;
  • 對(duì)于id而言,數(shù)據(jù)綁定是雙向的,attribute<=>property;
  • 對(duì)于disabled而言,property上的disabled為false時(shí),attribute上的disabled必定會(huì)并存在,此時(shí)數(shù)據(jù)綁定可以認(rèn)為是雙向的;

使用

  • 可以使用DOM的setAttribute方法來(lái)同時(shí)更改attribute;
  • 直接訪問(wèn)attributes上的值會(huì)得到一個(gè)Attr對(duì)象,而通過(guò)getAttribute方法訪問(wèn)則會(huì)直接得到attribute的值;
  • 大多數(shù)情況(除非有瀏覽器兼容性問(wèn)題),jQuery.attr是通過(guò)setAttribute實(shí)現(xiàn),而jQuery.prop則會(huì)直接訪問(wèn)DOM對(duì)象的property;

總結(jié)

以上就是這篇文章的全部?jī)?nèi)容了,希望本文的內(nèi)容對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,如果有疑問(wèn)大家可以留言交流,謝謝大家對(duì)億速云的支持。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI