怎样用javascript来控制html控件table中的某一行不可见!?? 本文转载自  rtno1979  查看原文  2003-11-18  10    java/ 控件/

时间:2022-11-03 14:08:57
因为程序的需要,当不同情况进入时候,要根据条件判断某一行不可见,表格行和行中的内容都不可见,请问用javascript在客户端怎么写?我知道有个属性style="display:none",但是写了后不知为什么不行,请高手指教,怎么嵌入到页面中去呢!?

4 个解决方案

#1


<tr style="display:none">

#2


<table border>
<tr id=a>
<td>aa</td>
</tr>
</table>
<input onclick="document.all.a.style.display=(document.all.a.style.display=='none')?'':'none'" type=button>

#3


net_lover,怎样在程序中写呢!?

#4


net_lover说的很清楚了 rtno1979(rtno1979) 还有什么疑问吗?

#1


<tr style="display:none">

#2


<table border>
<tr id=a>
<td>aa</td>
</tr>
</table>
<input onclick="document.all.a.style.display=(document.all.a.style.display=='none')?'':'none'" type=button>

#3


net_lover,怎样在程序中写呢!?

#4


net_lover说的很清楚了 rtno1979(rtno1979) 还有什么疑问吗?