如何动态隐藏列边框

时间:2011-05-18 06:51:05

标签: javascript html

我有两个单选按钮r1和r2以及两个文本框t1和t2。

如果单击r1,则应隐藏文本框。如果我单击r2文本框应该是可见的。这很有效。

我的问题是,如果单击r1,则应隐藏文本框和列边框。

怎么做?


评论代码:

<TR height="20"> 
<TD class="fieldcellbright" colspan="1">Mode:<FONT color="red">*</FONT></TD>
<TD class="fieldcellbright" colspan="1">&nbsp;<INPUT type="radio" name="rad" id="r2">r2</TD> 
<TD class="fieldcellbright" colspan="1">&nbsp;<INPUT type="radio" name="rad" id="r1">r1</TD> 
</TR> 

JS:

if(r1.checked == true){ t1.style.visibility="hidden"; t2.style.visibility="hidden"; } 

1 个答案:

答案 0 :(得分:0)

请查看以下链接中的17.3列部分

http://www.w3.org/TR/CSS2/tables.html

我认为这对你有用...... :)