close

getAttribute

element.getAttribute('data-example');


setAttribute

element.setAttribute('data-example','Hellow world');


hasAttribute

if(element.hasAttribute('data-example')){
console.log('yep');
}


有些元素也可以直接調用API

// Set an ID
elem.setAttribute( 'id', 'new-id' );
elem.id = 'new-id';

// Set width
elem.setAttribute( 'width', '200px' );
elem.width = '200px';

// Get title
var title = elem.getAttribute( 'title' );
var titleToo = elem.title;

arrow
arrow
    創作者介紹
    創作者 浣熊 的頭像
    浣熊

    前端生涯

    浣熊 發表在 痞客邦 留言(0) 人氣()