用RadioButten或CheckBox实现div的显示与隐藏

用RadioButten(或CheckBox)实现div的显示与隐藏,当选择“女”时,显示“美女、才女”;当选择“男”时隐藏,具体实现如下,感兴趣的朋友可以参考下

当选择“女”时,显示“美女、才女”;当选择“男”时,隐藏 aspx 页面内容:

复制代码 代码如下:


<head runat="server">
<title>用RadioButten(或CheckBox)实现div的显示与隐藏</title>
<script type="text/javascript" language="javascript">
function show2() {
if (document.getElementById("Radio2").checked) {
document.getElementById("nvInfo").style.display = "block";
}
else {
document.getElementById("nvInfo").style.display = "none";
}
}
</script>
</head>
<body>
<form runat="server">
<div>
<input type="radio" runat="server" value="11" />男
<input type="radio" runat="server" value="22" />女
<%-- <input type="checkbox" runat="server" value="22" />女--%>
</div>
<div runat="server">
<input type="radio" runat="server" value="11" />美女
<input type="radio" runat="server" value="22" />才女
</div>
</form>
</body>


cs页面代码:

复制代码 代码如下:


protected void Page_Load(object sender, EventArgs e)
{
this.Radio2.Checked = true;
if (this.Radio2.Checked)
this.nvInfo.Attributes.CssStyle.Add("display", "block"); //从.cs给.aspx中的HTML控件添加CSS样式属性
if (this.Radio1.Checked)
this.nvInfo.Attributes.CssStyle.Add("display", "none"); //从.cs给.aspx中的HTML控件添加CSS样式属性
}

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wdzjyx.html