用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>
展开
 我来答
慕光远Rc
2020-03-01 · TA获得超过3818个赞
知道大有可为答主
回答量:3103
采纳率:29%
帮助的人:176万
展开全部
<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>
heruyi
推荐于2016-02-03 · TA获得超过558个赞
知道小有建树答主
回答量:197
采纳率:0%
帮助的人:176万
展开全部
<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>
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式