我已经编写了一段 javascript 代码,其中包含一些硬编码值来生成引导表,现在我想仅使用 javascript 为其添加引导分页。
var table =document.createElement("table")
table.className="table"
var thead = document.createElement("thead")
var tr = document.createElement("tr")
for(let i=0;i<noOfColumns;i++){
var th = document.createElement("th")
th.scope="col"
th.innerHTML="Col "+(i+1)
thead.appendChild(tr).appendChild(th)
}
var tbody =document.createElement("tbody")
var tr1 = document.createElement("tr")
var th3 = document.createElement("th")
th3.scope="row"
th3.innerHTML="1"
tbody.appendChild(tr1).appendChild(th3)
for(let i=1;i<noOfColumns;i++){
var td = document.createElement("td")
td.innerHTML="Val "+(i)
tbody.appendChild(tr1).appendChild(td)
}
table.appendChild(thead)
table.appendChild(tbody)
document.getElementById(divId).appendChild(table)
12345678_0001
相关分类