怎么样才能随意调节表格大小
怎么样才能随意调节表格大小
是这样的形式吗
<script language=javascript>function m()
{
var t1=document.getElementById("t1");
if(t1.width>800 || t1.height>500)
{
alert("已经达到上限!");
}
t1.width=parseInt(t1.width)+10;
t1.height=parseInt(t1.height)+10;
}
function n()
{
var t1=document.getElementById("t1");
if(t1.width<100 || t1.height<50)
{
alert("已经达到上限!");
}
t1.width=parseInt(t1.width)-10;
t1.height=parseInt(t1.height)-10;
}
</script>
<div id="d1">
<table border=0 cellspacing=1 cellpadding=0 bgcolor="#000000" id="t1"
width=200 height=100>
<tr bgcolor="#FFFFFF"><td>111111111111111111</td></tr>
</table>
</div>
<input type=button value="大" onclick="m();">
<input type=button value="小" onclick="n();">