用js语句显示table的某个隐藏列
我在table中隐藏了一列,现在想用js在点击提交按钮后将隐藏的内容显示在页面上,请问这个js该怎么写?万分感谢,很着急用,以下为table<tablewidth="25...
我在table中隐藏了一列,现在想用js在点击提交按钮后将隐藏的内容显示在页面上,请问这个js该怎么写?万分感谢,很着急用,以下为table
<table width="251" bgcolor="#000000" height="8">
<tr bgcolor="ffffff">
<td style="display:none;" align=left>
<table id=lpc bgcolor=#98CC00 height=6>
<tr><td></td></tr>
</table>
</td>
</tr>
</table> 展开
<table width="251" bgcolor="#000000" height="8">
<tr bgcolor="ffffff">
<td style="display:none;" align=left>
<table id=lpc bgcolor=#98CC00 height=6>
<tr><td></td></tr>
</table>
</td>
</tr>
</table> 展开
2个回答
展开全部
<table
width="251"
bgcolor="#000000"
height="8">
<tr
bgcolor="ffffff">
<td
id="ctr"
style="display:none;"
align=left>
<table
id=lpc
bgcolor=#98CC00
height=6>
<tr><td>content</td></tr>
</table>
</td>
</tr>
</table>
<input
type="button"
value="提交"
onclick="test()"/>
//提交按纽调用该方法
<script>
function
test(){
document.getElementById("ctr").style.display="block";
}
</script>
width="251"
bgcolor="#000000"
height="8">
<tr
bgcolor="ffffff">
<td
id="ctr"
style="display:none;"
align=left>
<table
id=lpc
bgcolor=#98CC00
height=6>
<tr><td>content</td></tr>
</table>
</td>
</tr>
</table>
<input
type="button"
value="提交"
onclick="test()"/>
//提交按纽调用该方法
<script>
function
test(){
document.getElementById("ctr").style.display="block";
}
</script>
展开全部
<table width="251" bgcolor="#000000" height="8">
<tr bgcolor="ffffff">
<td id="ctr" style="display:none;" align=left>
<table id=lpc bgcolor=#98CC00 height=6>
<tr><td>content</td></tr>
</table>
</td>
</tr>
</table>
<input type="button" value="提交" onclick="test()"/>
//提交按纽调用该方法
<script>
function test(){
document.getElementById("ctr").style.display="block";
}
</script>
<tr bgcolor="ffffff">
<td id="ctr" style="display:none;" align=left>
<table id=lpc bgcolor=#98CC00 height=6>
<tr><td>content</td></tr>
</table>
</td>
</tr>
</table>
<input type="button" value="提交" onclick="test()"/>
//提交按纽调用该方法
<script>
function test(){
document.getElementById("ctr").style.display="block";
}
</script>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询