需要一些幫助。管理創建一個jQuery來改變被點擊後的按鈕的類,但我需要你點擊一個新的按鈕類被從其他人中刪除。點擊新按鈕後刪除課程
我在嘗試,但我不能。我嘗試了一些方法,但每當我嘗試時,我都可以刪除所有內容,然後單擊與新類別不同的按鈕。
任何人都可以幫助我嗎?
$(document).ready(function() {
$('div#filters-container button').click(function() {
var id_button = $(this).val();
$("#" + id_button + "").addClass("cbp-filter-item-active");
});
});
.cbp-filter-item-active {
background-color: #5d5d5d;
color: #fff!important;
border-color: #5d5d5d
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<div id="filters-container">
<button value="0" id="0" href="videos2-carrega.asp">Todos</button>
<button value="1" id="1" href="videos2-carrega.asp?cat=1">Família</button>
<button value="2" id="2" href="videos2-carrega.asp?cat=2">Finanças</button>
<button value="3" id="3" href="videos2-carrega.asp?cat=3">Propaganda</button>
<button value="4" id="4" href="videos2-carrega.asp?cat=4">Empreendedorismo</button>
</div>
感謝您的關注。
只顯示你寫的代碼,而不是小提琴鏈接 – 2014-11-04 11:24:43
代碼pleeeeazzz。您將無法添加鏈接到jsfiddle,直到您在那裏顯示代碼。 – nicael 2014-11-04 11:25:00
請輸入密碼+小提琴。 – sinisake 2014-11-04 11:25:35