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;
文章標籤
全站熱搜
留言列表