您好,登錄后才能下訂單哦!
小編給大家分享一下js中attributes和Attribute有哪些區別,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
js中的attributes和Attribute的用法和區別。DOM元素含有的這兩個東西,雖然完全不是一回事,但卻又緊密聯系在一體,不細細體會,還真不好分清。四兄弟的概念比較容易理解,使用方法也比較簡單,唯一需要注意幾點。
Attribute的幾種用法和含義
getAttribute:獲取某一個屬性的值;
setAttribute:建立一個屬性,并同時給屬性捆綁一個值;
createAttribute:僅建立一個屬性;
removeAttribute:刪除一個屬性;
getAttributeNode:獲取一個節點作為對象;
setAttributeNode:建立一個節點;
removeAttributeNode:刪除一個節點;
getAttribute怎樣用
<body>
<divid="t"><inputtype="hidden"id="sss"value="aaa"></div>
</body>
<script>
vard=document.getElementById("sss").getAttribute("value");
console.log(d)//aaa;
</script>
get取得的返回值是屬性值。
setAtribute怎樣用
<divid="t"><inputtype="hidden"id="sss"value="aaa"></div>
</body>
<script>
vard=document.createAttribute("good");
document.getElementById("sss").setAttributeNode(d);
alert(document.getElementById("t").innerHTML)//彈出框<inputtype="hidden"id="sss"value="aaa"good="">;
//多了一個屬性為good;但是沒有給其設置屬性值;所以為空。
</script>
以上是“js中attributes和Attribute有哪些區別”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。