JavaScript控制内容的隐藏和显示
程序员文章站
2022-05-25 19:31:34
...
在Jsp页面中包含以下一段类似代码:
<td align="left" colspan="3" rowspan="3">
<nested:radio property="eventType" value="显示"
onclick="$_$('#selectUser').css ({display:' '});"></nested:radio>显示
<nested:radio property="eventType" value="隐藏"
onclick="$_$('#selectUser').css ({display:' '}):"></nested:radio>隐藏
</td>
以下这段代码就是要控制显示的内容
<tr id="selectUser" style="display:none;">
。。。。。。。。。。。
</tr>
或
<td height="35" id="selectUser" style="display:none;">
。。。。。。。。。。。
</td>
当然也可根据具体情况将控制代码写在 function() 中
上一篇: 时间戳的有关问题和字符集编码的有关问题
下一篇: Portal实现原理