我在aspx页面上有一个asp:checkboxasp:textbox,我想知道选中该复选框时显示该文本框,如果该复选框未使用javascript隐藏则将其隐藏,我真的很感激任何可以帮助我的人。

最佳答案

您可以使用此代码

<script type="text/javascript">
function radio_yes(){
if(document.getElementById("c1").checked==true)
        document.getElementById("atext").style.visibility="visible";
        else
        document.getElementById("atext").style.visibility="hidden";}
</script>
<input type="checkbox" id = "c1" name="subscriptions" onclick = "radio_yes();radio_uncheck();"  value="CorporateEmails"/>
    Corporate Press Release Emails<br />
<input type="text" id="atext">

10-06 07:55