下拉框选择绑定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();
            }
        });
    }

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM