我想改变
newcell.innerHTML = table.rows[1].cells[1].innerHTML;
switch(newcell.childNodes[0].type) {
case "select-one":
newcell.childNodes[0].setAttribute("onchange","showUser(this.value,"+xx+");");
}
使用事件监听器,因此它可以包含2个函数 showuser和showrole
但请告诉我该怎么做
答案 0 :(得分:3)
您应该使用addEventListener
代替.setAttribute
通过这种方式,您可以毫无问题地设置更多功能