我在javascript中创建一个tablecell并试图添加我创建的css样式但由于某种原因它无法正常工作。我知道我很接近但不确定这里的错误是我的代码如下:粗线是我遇到麻烦的地方
var cellLeft = row.insertCell(0);
var el = document.createElement('input');
el.type = 'text';
el.id = 'textField1';
**cellLeft.setAttribute("class", "MainTableHeader");**
cellLeft.appendChild(el);
答案 0 :(得分:0)
要将类添加到元素中,您应该使用className
属性,如下所示:
cellLeft.className += "MainTableHeader";
答案 1 :(得分:0)
cellLeft.className += "MainTableHeader";