我想改变
newcell.innerHTML = table.rows [1] .cells [1] .innerHTML;
                switch(newcell.childNodes [0] .type){
                    情况“选择一个”:

newcell.childNodes[0].setAttribute("onchange","showUser(this.value,"+xx+");"); }

具有事件监听器,因此它可以包含2个函数
showuser和showrole

但请告诉我我该怎么做

最佳答案

您应该使用addEventListener而不是.setAttribute

这样,您可以毫无问题地设置更多功能

关于javascript - setattribute到addEventListener,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19290818/

10-11 21:24