我在我的JavaScript代码中使用了for (let row of rows) {}
,而Internet Explorer 11对此并不满意。我知道IE11通常不会使用let
。但是row of rows
也有问题。我该如何更改它才能在IE11中使用?
我已经尝试使用for (var row of rows)
,但是不起作用。
rows = table.getElementsByTagName("tr");
for (let row of rows) {
cells = row.getElementsByTagName("td");
modelRange = cells[0] || null;
secret = cells[3];
...
}