zoukankan      html  css  js  c++  java
  • 下拉框选择绑定change事件

    例:select下拉选绑定change动态隐藏与显示

       function selectChange() {
            $("select[name='sic']").change(function(){
                var selected=$(this).children('option:selected').val()
                if(selected=="1"){
                      $("div[data-container-for='otherclass']").hide();
                      $("div[data-container-for='othermethod']").hide();
                    $("label[for='otherclass']").parent().hide();
                    $("label[for='othermethod']").parent().hide();
                }else if(selected=="0"){
                    $("div[data-container-for='otherclass']").show();
                    $("div[data-container-for='othermethod']").show();
                    $("label[for='otherclass']").parent().show();
                    $("label[for='othermethod']").parent().show();
                }
            });
        }
  • 相关阅读:
    String和stringbuffer
    项目中Orcale存储过程优化记录
    大数据项目中的Oracle查询优化
    洛谷P3402 可持久化并查集
    Gym
    CodeForces
    Gym
    Gym
    UVA
    Kattis
  • 原文地址:https://www.cnblogs.com/water-1/p/11179561.html
Copyright © 2011-2022 走看看