前台调用后台控件

来源:互联网 发布:mac液体唇膏 黄皮 编辑:程序博客网 时间:2024/05/16 09:35

 <asp:DropDownList ID="ddlType" runat="server" Width="100px" onchange="Show(this.options[this.options.selectedIndex].value)" >
                        <asp:ListItem Value="1">年模型</asp:ListItem>
                        <asp:ListItem Value="2">季度模型</asp:ListItem>
                        <asp:ListItem Value="3">月模型</asp:ListItem>
                        <asp:ListItem Value="0">其他</asp:ListItem>
                    </asp:DropDownList>

 

 

 

 

<script language="javascript" type="text/javascript">
        function Show(value) {
            if (value == "1" || value == "0") {
                //年模型 || 其他
                document.getElementById("ddlSeason").style.display = "none";
                document.getElementById("ddlMonth").style.display = "none";
            }
            else if (value == "2") {
                //季度模型
                document.getElementById("ddlSeason").style.display = "";
                document.getElementById("ddlMonth").style.display = "none";
            }
            else {
                //value="3"
                //月模型
                document.getElementById("ddlSeason").style.display = "none";
                document.getElementById("ddlMonth").style.display = "";
            }
        }
    </script>