water-1

例: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();
            }
        });
    }

 

分类:

技术点:

相关文章:

  • 2021-05-28
  • 2021-06-13
  • 2022-12-23
  • 2021-11-02
  • 2021-09-25
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-12-04
  • 2021-05-11
  • 2022-12-23
  • 2022-12-23
  • 2022-01-14
  • 2021-06-13
相关资源
相似解决方案