setAttribute方法可以用來設置指定元素上的屬性值。正確使用setAttribute方法的方法是:
示例代碼如下:
// 確定要設置屬性的元素
var element = document.getElementById('myElement');
// 設置屬性
element.setAttribute('data-custom', 'value');
element.setAttribute('onclick', function() {
alert('Clicked!');
});