I am dynamically adding columns to a table by using document.createElement("th")
var newTH = document.createElement('th');
Is there a way to set an onClick
attribute for this so a user can delete the column by clicking on the header? Any help would be great. If this is not possible, is it possible to put something in
newTH.innerHTML
to make it work?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…