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