在我的用户控件中,面板和面板将ddlType和txtOthers作为文本框控件,最初txtOthers显示为false。
当用户在ddlType中选择并且其值(1,2,3,4,5和6)等于6时,txtOthers使其可见为true,否则为false。
我想用IE8使用JavaScript来避免回发。
任何帮助!。
if (ddlType.value==6)
txtOthers.Visible=true;
else
txtOthers.Visible=false;
我尝试过上面的代码,默认情况下控件在in-visible中,因此javascript无法识别控件。
但是,默认情况下,控件显示为false。
答案 0 :(得分:0)
display:none;
或visibility:hidden;
ddlType
添加一个事件监听器,因此当它变为6时,您将样式换成txtOthers ddlType