有人可以帮助处理这段有异常的代码片段。它总是堆叠在[2,0]索引上。我无法弄清楚如何解决这个问题。我在下面添加了截图。
randomDiv.innerHTML = "<a target='_blank' href='http://example.com/"+newText+"'>"+newText"</a>";
答案 0 :(得分:0)
此处的问题是DataGridView
的{{3}}。
DataGridView
的索引类似于[col, row]
,而矩阵索引为[row, col]
通过将grid[i, j]
更改为grid[j, i]
,问题将得到解决。