jq 动态切换图标

if(!$(this).hasClass("subdrop")) {
// hide any open menus and remove all other classes
$("ul",$(this).parents("ul:first")).slideUp(350);
$("a",$(this).parents("ul:first")).removeClass("subdrop");

$("#sidebar-menu .pull-right i").removeClass("fa-chevron-down").addClass("fa-chevron-left");

// open our new menu and add the open class
$(this).next("ul").slideDown(350);
$(this).addClass("subdrop");

$(".pull-right i",$(this).parents(".has_sub:last")).removeClass("fa-chevron-left").addClass("fa-chevron-down");
$(".pull-right i",$(this).siblings("ul")).removeClass("fa-chevron-down").addClass("fa-chevron-left");

}else if($(this).hasClass("subdrop")) {
$(this).removeClass("subdrop");
$(this).next("ul").slideUp(350);

$(".pull-right i",$(this).parent()).removeClass("fa-chevron-down").addClass("fa-chevron-left");
}
posted @ 2021-09-29 15:58  Li_ll  Views(95)  Comments(0Edit  收藏  举报