成人AV在线无码|婷婷五月激情色,|伊人加勒比二三四区|国产一区激情都市|亚洲AV无码电影|日av韩av无码|天堂在线亚洲Av|无码一区二区影院|成人无码毛片AV|超碰在线看中文字幕

js輸入行和列生成表格 怎么用js做一個表格?

怎么用js做一個表格?通過動態(tài)創(chuàng)建表來創(chuàng)建表,TR,TD函數(shù)autocreate(){//Create table var table=文檔.createElement(“表”)表.setAttrib

怎么用js做一個表格?

通過動態(tài)創(chuàng)建表來創(chuàng)建表,TR,TD函數(shù)autocreate(){//Create table var table=文檔.createElement(“表”)表.setAttribute(“border”,“1”)表.setAttribute(“background”,“red”)//獲取行值var line=文檔.getElementById(“行”)。Value//獲取列值var list=文檔.getElementById(“列表”)。Valuefor(VaR I=1I<=lineI){//Alert(line)//創(chuàng)建trvar tr=文檔.createElement(“tr”)for(VaR J=1J<=listj){//警報(列表)//創(chuàng)建tdvar TD=文檔.createElement(“td”)td.innerHTML=我* jtr.1子級(td)}表.appendChild(tr)}文檔.getElementById(“d1”).appendChild(表)}