Jquery对类的操作

Jquery对类的基本操作

 $("#Div_BillSon div").on('click', function (e) {

            $("#Div_BillSon").children(".billson_active").removeClass("billson_active").addClass("billson_noactive");
            $(this).removeClass("billson_noactive").addClass("billson_active");
            DisplayPart();
        });
        function DisplayPart() {
            if ($("#dSearch").hasClass("billson_active")) {
                $("#serachPart").show();
                $("#uploadPart").hide();
            }
            else {
                $("#serachPart").hide();
                $("#uploadPart").show();
            }
        }

 

posted @ 2022-03-28 10:36  派大没有星  阅读(20)  评论(0编辑  收藏  举报