通过select下拉框里的value控制div显示与隐藏

简介: 通过select下拉框里的value控制div显示与隐藏
<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
        <script src="http://libs.baidu.com/jquery/2.0.0/jquery.js"></script>
    </head>
    <script>
        $(function() {
            //隐藏div
            $("#shouhou2").hide();
            $("#shouhou3").hide();
            //给div添加change事件
            $("#type").change(function() {
                if($(this).val() == 1 ) {
                    $("#shouhou1").show();
                    $("#shouhou2").hide();
                    $("#shouhou3").hide();
                } else if($(this).val() == 2 ) {
                    $("#shouhou2").show();
                    $("#shouhou1").hide();
                    $("#shouhou3").hide();
                }
                else if($(this).val() == 3 ) {
                    $("#shouhou3").show();
                    $("#shouhou1").hide();
                    $("#shouhou2").hide();
                }
            })
        })
    </script>
    <body>
        <select class="select" size="1" name="type" id="type">
            <option value="1">表格</option>
            <option value="2">折线图</option>
            <option value="3">柱状图</option>
        </select>
        <div id="shouhou1" style>表格区域</div>
        <div id="shouhou2" style>折线图区域</div>
        <div id="shouhou3" style>柱状图区域</div>
    </body>
</html>
相关文章
|
7月前
【UI】 element -ui select下拉框label显示多个值
【UI】 element -ui select下拉框label显示多个值
236 1
隐藏el-table-column过多的内容并进行浮窗展示
隐藏el-table-column过多的内容并进行浮窗展示
隐藏el-table-column过多的内容并进行浮窗展示
element-plus:el-table自定义展开图标处于列的位置
element-plus:el-table自定义展开图标处于列的位置
713 0
|
3月前
|
JavaScript
element-ui table表格多选后再打开默认选中
element-ui table表格多选后再打开默认选中
|
2月前
element组件库笔记一:element 框架中table表格复选框选中后,切换下一页之前选中复选框和数据消失的问题
这篇文章介绍了在Element UI框架中,如何解决表格组件复选框在分页时选中状态丢失的问题。
114 0
|
7月前
|
JavaScript
Element_select 选择器 选中框中显示不了选中的值
解决Vue中`el-select`选择器不显示选中值的问题:在`selectChanged`方法中添加`this.$forceUpdate()`,强制组件更新,使输入框显示选择的值。示例代码包括模板和方法。
955 2
|
5月前
Element UI【级联选择器】el-cascader 获取选中内容的 label 数据,鼠标悬浮显示超长内容
Element UI【级联选择器】el-cascader 获取选中内容的 label 数据,鼠标悬浮显示超长内容
738 3
|
5月前
Element UI 多选表格--判断勾选数据行的 Checkbox 时为选中还是取消选中
Element UI 多选表格--判断勾选数据行的 Checkbox 时为选中还是取消选中
64 1
|
7月前
el-select如何自定义下拉选项框的宽度
el-select如何自定义下拉选项框的宽度
1023 0
|
JavaScript
jqGrid数据列表和表单的列隐藏/显示
jqGrid数据列表和表单的列隐藏/显示
119 0