什么过滤器按钮whit jquery

时间:2015-07-01 13:52:56

标签: javascript jquery

我有这个jQuery:

 $(".utente1").click(function () {

            $('.newdiv').hide();

$('.hidecolor').find('.vc_single_image-img').css('filter','grayscale(100%)');

            $(".utente-1").show(600);   

      $('.utente1').find('.img').css('filter','none')
    })

当我点击另一个按钮时,按钮utente1 remaning filter:none

当我点击.utente1时会打开div,但我希望按钮(.utente1)也能改变颜色。

1 个答案:

答案 0 :(得分:0)

在utente1点击中添加此代码:

$(this).css('color','red');

所以您的完整代码将是:

$(".utente1").click(function () {
        $('.newdiv').hide();
        $(".utente-1").show(600);  
        $(this).css('color','red');
 });

如果要更改所有按钮的颜色。为这些按钮添加一个comman类,然后设置css:

 $(".utente1").click(function () {
            $('.newdiv').hide();
            $(".utente-1").show(600);  
            $(".commanClass").css('color','red');
     });