What I need to know is how to insert a row into a tbody with specific column,for example I need to insert after the second row . I know I can do it with jquery ,but it does not suit in IE
I have tried it with jquery but I got an error '"对象不支持“after”属性或方法"'
var tr1 = tbody.getElementsByTagName('tr')[1];
var newRow = tbody.insertRow()
tr1.after(newRow)
I expect I can get a row after the second row .