jquery 切换选择css样式

前端之家收集整理的这篇文章主要介绍了jquery 切换选择css样式前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

<p style="Box-sizing: border-Box; margin-top: 0px; margin-bottom: 19.7969px; color: rgb(51,51,51); white-space: normal;">利用jquery来切换导航菜单的css样式:

首页PHP">PHP微信小程序标签

Box-sizing: border-Box; margin-top: 0px; margin-bottom: 19.7969px; color: rgb(51,51); white-space: normal;">如果选择了就给添加Box-sizing: border-Box;font-size: 14.4px; padding: 2px 4px; color: inherit; background-color: rgba(0,0.0392157); border-radius: 4px;">样式

$(".menu").find('li').click(function(){

    $(this).siblings().removeClass('current-menu-item');
    $(this).addClass('current-menu-item');
});


猜你在找的jQuery相关文章