在JavaScript中,setAttribute方法用于設(shè)置指定元素的屬性值,常見(jiàn)的用法有以下幾種:
element.setAttribute('id', 'myId');
element.setAttribute('class', 'myClass');
element.setAttribute('style', 'color: red; font-size: 16px;');
element.setAttribute('onclick', 'myFunction()');
element.setAttribute('data-myattribute', 'myValue');
需要注意的是,使用setAttribute方法設(shè)置的屬性值都是字符串類(lèi)型,如果需要設(shè)置其他類(lèi)型的值,需要進(jìn)行相應(yīng)的類(lèi)型轉(zhuǎn)換。另外,使用setAttribute方法設(shè)置的屬性值會(huì)覆蓋已存在的同名屬性值。