在索引页面中,我有员工表,3个按钮,如Active,Inactive和All employee .how总是突出显示点击的按钮。
我试过这样的,
br
请有人帮助我....谢谢
答案 0 :(得分:0)
使用JQuery for Bootstrap样式:
$(document).ready(function(){
$('a').click(function(){
$('a').removeClass("active");
$(this).addClass("active");
});
});