我正在尝试texts
使用.html
innerText
//table is a html table structure
var cells = table.innerText.trim()
cells
数据如下:
1st cell
2nd cell
3rd cell
4th cell
last cell
如何使每个单元格数据变成array
?
我努力了
cells = cells.split(' ');
但它不起作用。
这里有什么帮助吗?非常感谢!