0.什麼是標記 這裡的checked、id、href、title就是標記 1.布爾標記 已checked為例 存在即應用,用來標記狀態, 如果存在改標記,getAttribute的值始終使checked,不存在getAttribute的值是undefined, 通過setAttribute、remo ...
0.什麼是標記
<input type="checkbox" checked />
<a href="http:www.baidu.com" title="123" id="lol">提示</a>
這裡的checked、id、href、title就是標記
1.布爾標記
已checked為例
存在即應用,用來標記狀態,
如果存在改標記,getAttribute的值始終使checked,不存在getAttribute的值是undefined,
通過setAttribute、removAttribute操作該值,會作用到屬性checked上,屬性checked的取值為true或false。
對屬性checked的賦值操作不會對標記checked產生任何影響
2.數據標記
已title為例
屬性title的值始終和標記title的值一致
對屬性title的賦值會影響標記title的存在(從無到有)、值