国产成人精品久久免费动漫-国产成人精品天堂-国产成人精品区在线观看-国产成人精品日本-a级毛片无码免费真人-a级毛片毛片免费观看久潮喷

您的位置:首頁技術(shù)文章
文章詳情頁

淺談js中的attributes和Attribute的用法與區(qū)別

瀏覽:110日期:2024-04-30 08:59:41

一:Attribute的幾種用法和含義(attributes和Attribute都是用來操作屬性的)

getAttribute:獲取某一個屬性的值;setAttribute:建立一個屬性,并同時給屬性捆綁一個值;createAttribute:僅建立一個屬性;removeAttribute:刪除一個屬性;getAttributeNode:獲取一個節(jié)點作為對象;setAttributeNode:建立一個節(jié)點;removeAttributeNode:刪除一個節(jié)點;

1.getAttribute:

<body> <div id = 't'><input type = 'hidden' value = 'aaa'></div></body><script> var d=document.getElementById('sss').getAttribute('value'); console.log(d) //aaa;</script>

get 取得的返回值是屬性值。

2.setAtribute:

<div id = 't'><input type = 'hidden' value = 'aaa'></div></body><script> var d = document.createAttribute('good'); document.getElementById('sss').setAttributeNode(d); alert(document.getElementById('t').innerHTML) //彈出框<input type='hidden' value='aaa' good=''>;//多了一個屬性為good;但是沒有給其設(shè)置屬性值;所以為空。</script>

// obox.setAttribute('a','b') 返回值是undifined;表示給標(biāo)簽里面加上一個屬性a;屬性值 // 為b;若設(shè)置的屬性已經(jīng)存在,那么僅限設(shè)置/更改值;直接設(shè)置 //給了標(biāo)簽,看不到返回值,但在html頁面中可以看到屬性已經(jīng)被添加到了標(biāo)簽中。

3.createAttribute:

<body><div id = 't'><input type = 'hidden' value = 'aaa'></div></body><script> var d = document.createAttribute('good'); document.getElementById('sss').setAttributeNode(d); alert(document.getElementById('t').innerHTML) //彈出框<input type='hidden' value='aaa' good=''>; //多了一個屬性,屬性值為空</script>

4.removeAttribute:

<body><div id = 't'><input type = 'hidden' value = 'aaa'></div></body><script> var d = document.getElementById('sss').getAttributeNode('value')console.log(d) // value='aaa' document.getElementById('sss').removeAttributeNode(d); alert(document.getElementById('t').innerHTML); //彈出框<input type = 'hidden' id = 'sss'>; //在標(biāo)簽中刪除屬性value</script>

getAttribute,setAttribute,createAttribute,removeAttribute四兄弟的概念比較容易理解,使用方法也比較簡單,唯一需要注意這幾點:1、createAttribute在使用的時候不需要基于對象的,document.createAttribute()就可以。2、setAttribute,createAttribute在使用的時候如果是使用的時候不要使用name,type,value等單詞.3、createAttribute在使用的時候如果只定義了名字,沒有d.nodeValue = 'hello';語句定義值,F(xiàn)F會認為是一個空字符串,IE認為是undefined。

getAttributeNode,setAttributeNode,removeAttributeNode三個方法的特點是都直接操作一個node(節(jié)點)。

例:

<body><div id = 't'><input type = 'hidden' value = 'aaa'></div></body><script> var d = document.createAttribute('good'); document.getElementById('sss').setAttributeNode(d); alert(document.getElementById('t').innerHTML); //彈出框<input type='hidden' value='aaa' good=''>;</script>

setAttributeNode() 方法用于添加新的屬性節(jié)點。參數(shù):attributenode;必須填寫你要添加的屬性節(jié)點。

如果元素中已經(jīng)存在指定名稱的屬性,那么該屬性將被新屬性替代。如果新屬性替代了已有的屬性,則返回被替代的屬性,否則返回 NULL。

======================================================================

二:attributes的用法:

attributes可以獲取一個對象中的一個屬性,并且作為對象來調(diào)用,注意在這里要使用“[]”;attributes 屬性返回指定節(jié)點屬性的集合。你可以使用 length 屬性確定屬性的數(shù)量,然后你可以遍歷所有的屬性節(jié)點提取你想要的信息。每個屬性都是可用屬性節(jié)點對象。

節(jié)點的方法,前綴一定是節(jié)點。

對象.attributes //獲得所有屬性節(jié)點,返回一個數(shù)組(偽數(shù)組)

<body> <div id = 't'> <input type = 'text' value = 'aaa'></body><script type='text/javascript'> var a=document.getElementById('sss').attributes; console.log(a); //NamedNodeMap {0: type, 1: id, 2: value, type: type, id: id, value: value, length: 3}; //attributes獲得所有的屬性節(jié)點,返回一個數(shù)組(偽數(shù)組); // attributes可以獲取一個對象中的一個屬性,并且作為對象來調(diào)用,注意在這里要使用“[]” var d = document.getElementById('sss').attributes['value']; console.log(typeof d); // object console.log(d); // value='aaa'; document.write(d.name); //顯示 value document.write(d.value); //顯示 aaa</script>

<body> <div a='10' b='20' id='cont'></div></body><script> var obox=document.querySelector('.box'); console.log(obox.attributes[3]) //id='cont'; console.log(typeof obox.attributes[3]) //object; console.log(obox.attributes[3].nodeName); //id;顯示數(shù)組中第四個屬性的屬性名 console.log(obox.attributes[3].nodeValue); //cont;顯示數(shù)組中第四個屬性的屬性值 console.log(obox.attributes[3].nodeType); //2; 元素節(jié)點屬性的返回值為2</script>

到此這篇關(guān)于淺談js中的attributes和Attribute的用法與區(qū)別的文章就介紹到這了,更多相關(guān)js中attributes和Attribute內(nèi)容請搜索好吧啦網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持好吧啦網(wǎng)!

標(biāo)簽: JavaScript
相關(guān)文章:
主站蜘蛛池模板: 女初高中福利视频在线观看 | 宅男毛片 | 久久久久久免费一区二区三区 | 最新亚洲人成网站在线影院 | 欧美一级视屏 | 国产三级在线视频播放线 | 国产视频97| 在线观看亚洲免费 | 美女张开腿让男人桶爽动漫视频 | 精品午夜寂寞影院在线观看 | 黄色美女毛片 | 日本在线免费视频 | 久久精品国产99久久久 | 免费一级视频在线播放 | 成人影院午夜久久影院 | 亚洲精品男人天堂 | 亚洲图片一区二区三区 | 一区二区三区亚洲视频 | 在线a网站 | 999热精品这里在线观看 | 亚洲欧美综合视频 | 美女黄频免费观看 | 久久在线观看免费视频 | 中国一级淫片aaa毛片毛片 | 亚洲欧美一区二区三区在线 | 久久91精品国产91久久户 | 男女视频在线观看免费高清观看 | 香港三级日本三级妇人三级 | 精品国产欧美精品v | 亚洲 欧美 都市 自拍 在线 | 成人久久18免费游戏网站 | 免费一区二区三区 | 波多野结衣免费视频观看 | a级毛片免费 | 一级女性全黄生活片免费 | 一级做a爰片久久毛片鸭王 一级做a爰全过程免费视频毛片 | 欧美a级毛片 | 亚洲国产精品看片在线观看 | 韩国19禁主播裸免费福利 | 在线观看国产一区二区三区99 | 91精品久久久久亚洲国产 |