我正在使用 jquery 加载异步 HTML 表并将其附加到现有的 div 元素上。这很好用!
但是如果 HTML 表格的内容非常大,那么我的表格会被浏览器窗口的长度截断,我无法向下滚动到表格的末尾。
有谁知道我该如何解决这个问题。
非常感谢塔索
var root=document.getElementById('tabPrNr');
var tab=document.createElement('table');
tab.className="mytable";
var tbo=document.createElement('tbody');
var row, cell;
for(var i=0;i<100;i++){
row=document.createElement('tr');
for(var j=0;j<5;j++){
cell=document.createElement('td');
cell.appendChild(document.createTextNode(i+' '+j))
row.appendChild(cell);
}
tbo.appendChild(row);
}
tab.appendChild(tbo);
root.appendChild(tab);