当前位置:Gxlcms > JavaScript > JavaScript控制内容的隐藏和显示

JavaScript控制内容的隐藏和显示

时间:2021-07-01 10:21:17 帮助过:7人阅读

在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() 中

人气教程排行