这是我的js脚本。它只会创建一个带有文本的锚标记,而不是一个bulma按钮。
elementos.forEach(function(value,index){
var button = document.createElement("a");
button.class = "button is-primary is-rounded";
button.innerHTML = "Element " + (index +1)+ ": " + value
container.appendChild(button);
})
答案 0 :(得分:3)
问题出在您的语法上。
这是使用Javascript add a class to an element的正确方法:
button.classList.add("button is-primary is-rounded")