欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

用RadioButten或CheckBox實現(xiàn)div的顯示與隱藏

 更新時間:2013年09月21日 13:01:15   作者:  
用RadioButten(或CheckBox)實現(xiàn)div的顯示與隱藏,當(dāng)選擇“女”時,顯示“美女、才女”;當(dāng)選擇“男”時隱藏,具體實現(xiàn)如下,感興趣的朋友可以參考下
當(dāng)選擇“女”時,顯示“美女、才女”;當(dāng)選擇“男”時,隱藏 aspx 頁面內(nèi)容:
復(fù)制代碼 代碼如下:

<head runat="server">
<title>用RadioButten(或CheckBox)實現(xiàn)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 id="form1" runat="server">
<div>
<input id="Radio1" type="radio" runat="server" name="11" onclick="show2()" value="11" />男
<input id="Radio2" type="radio" runat="server" name="11" onclick="show2()" value="22" />女
<%-- <input id="Radio2" type="checkbox" runat="server" name="11" onclick="show2()" value="22" />女--%>
</div>
<div id="nvInfo" runat="server" style="display: none;">
<input id="Radio5" type="radio" runat="server" name="2" onclick="show1" value="11" />美女
<input id="Radio6" type="radio" runat="server" name="2" onclick="show2" value="22" />才女
</div>
</form>
</body>

cs頁面代碼:
復(fù)制代碼 代碼如下:

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樣式屬性
}

相關(guān)文章

最新評論