当前位置: 代码迷 >> ASP.NET >> 怎么自动补充html中<table>中的宽度和高度
  详细解决方案

怎么自动补充html中<table>中的宽度和高度

热度:6837   发布时间:2013-02-25 00:00:00.0
如何自动补充html中<table>中的宽度和高度?
html文档中的表格标记非常多,且嵌套很多,但<table>中常常没有宽度和高度值,如何编程自动补充呢?
请问dom有这个属性吗?

------解决方案--------------------------------------------------------
js:
document.getElementById("TableID").width=100;
document.getElementById("TableID").height=100;

------解决方案--------------------------------------------------------
1.
html:
<table style="height=100px;width=100px" > </table >

2.
js: 
document.getElementById("TableID").width=100; 
document.getElementById("TableID").height=100; 

3.
cs:
<table id="tableid" runat="server" > </table >

this.tableid.Attributes.Add("height","100px");
this.tableid.Attributes.Add("width","100px");

------解决方案--------------------------------------------------------
要把像素换成百分比
  相关解决方案