首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

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

2012-01-29 
如何自动补充html中table中的宽度和高度?html文档中的表格标记非常多,且嵌套很多,但table中常常没有宽

如何自动补充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");

[解决办法]
要把像素换成百分比

热点排行