var rows=myTable.getElementsByTagName('tr');
rows=Array.prototype.slice.call(rows,0);
在 IE 中不起作用,有没有其他方法可以将其转换为真正的数组,以便我可以在其上使用排序函数...?
var rows=myTable.getElementsByTagName('tr');
rows=Array.prototype.slice.call(rows,0);
在 IE 中不起作用,有没有其他方法可以将其转换为真正的数组,以便我可以在其上使用排序函数...?