我正在尝试使用 For 循环以 50 为增量填充 HTML 表的行。For 循环按预期工作,但在循环终止之前不会显示表中的任何行。
function a() {
// .....
let number_of_rows = 10000
for (i = 50; i < number_of_rows; i += 50) {
b(i)
}
// .....
}
function b(start_row) {
//create rows dynamically and append to the html table
}
白衣非少年
相关分类