的字體顏色下面是我的演示代碼http://jsfiddle.net/Wwdmm/3/選中一個複選框,並改變另一種選擇
但是當我點擊require
什麼也沒有發生。我想單擊require
,然後更改option2
的字體顏色,並取消選中option2
刪除其類。
什麼是錯誤?選擇就在那裏。 感謝
jQuery(document).ready(function(){
$('#id_run_options_0').change(function(){
if (this.checked){
alert('checked');
$('#id_run_options_1').addClass('highlight-option2');
}else{
alert('unchecked');
$('#id_run_options_1').removeClass('highlight-option2');
}});
});
REDIT謝謝。我將'change'改爲'click',但它仍然沒有將字體變成別的東西。 http://jsfiddle.net/Wwdmm/5/ – User007
謝謝。但爲什麼我們需要'.parent()'? – User007
我不知道我是否會使用點擊。用戶可以選中/輸入一個複選框。我認爲'改變'是一個更好的用法。 – idrumgood