js 獲取 table 中的每一個td

HelloWorld985發表於2020-10-21

var table = document.getElementById(“tableId”);
for(var i=0,i<table.rows[0].cells.length){
alert(table.rows[0].cells[i].offSetWidth)
}

相關文章