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

js如何創(chuàng)建表格 怎么用js做一個表格?

怎么用js做一個表格?通過動態(tài)創(chuàng)建table,tr,td的方式進(jìn)行表格創(chuàng)建function autocreate(){//創(chuàng)建table表格var table=document.createEleme

怎么用js做一個表格?

通過動態(tài)創(chuàng)建table,tr,td的方式進(jìn)行表格創(chuàng)建function autocreate(){//創(chuàng)建table表格var table=document.createElement("table")table.setAttribute("border","1")table.setAttribute("background","red")//獲取行數(shù)值var line=document.getElementById("line").value//獲取列數(shù)值var list=document.getElementById("list").valuefor(var i=1i<=linei ){//alert(line)//創(chuàng)建trvar tr=document.createElement("tr")for(var j=1j<=listj ){//alert(list)//創(chuàng)建tdvar td=document.createElement("td")td.innerHTML=i*jtr.appendChild(td)}table.appendChild(tr) }document.getElementById("d1").appendChild(table)}