在JavaScript中,setAttribute方法用于設置指定元素的屬性值,常見的用法有以下幾種:
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方法設置的屬性值都是字符串類型,如果需要設置其他類型的值,需要進行相應的類型轉換。另外,使用setAttribute方法設置的屬性值會覆蓋已存在的同名屬性值。