js元素状态切换
Posted hwzzbe
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js元素状态切换相关的知识,希望对你有一定的参考价值。
1 $(document).on(‘change‘,‘#c-is_grade‘,function () { 2 if($(this).val()==0){ 3 $(‘#c-total_score‘).parents(‘.form-group‘).hide(); 4 $(‘.score_box‘).hide(); 5 }else if($(this).val()==1){//评分 6 $(‘#c-total_score‘).parents(‘.form-group‘).show(); 7 $(‘.score_box‘).show(); 8 } 9 }); 10 11 $(document).on(‘change‘,‘#c-is_scan‘,function () { 12 if($(this).val()==0){ //否 13 $(‘#c-scan_num‘).parents(‘.form-group‘).hide(); 14 }else if($(this).val()==1){ 15 $(‘#c-scan_num‘).parents(‘.form-group‘).show(); 16 } 17 });
以上是关于js元素状态切换的主要内容,如果未能解决你的问题,请参考以下文章