Yii2:如何在索引页面中突出显示所选操作?

时间:2016-07-11 04:50:44

标签: php html yii2-basic-app

在索引页面中,我有员工表,3个按钮,如Active,Inactive和All employee .how总是突出显示点击的按钮。

我试过这样的,    

br

请有人帮助我....谢谢

1 个答案:

答案 0 :(得分:0)

使用JQuery for Bootstrap样式:

$(document).ready(function(){
    $('a').click(function(){
        $('a').removeClass("active");
        $(this).addClass("active");
    });
});