我仍然在學習jQuery,並遇到了一些我似乎無法解決的問題。我試圖切換位於頁面其他位置的div中複選框的標籤。到目前爲止,我已經設法追加標籤只有當複選框未選中,但我不知道如何刪除文本該篩選器只有,如果它變成未選中。有什麼建議?jquery基於複選框狀態在div中切換文本
JQUERY:
$('.filter-single').on('click', function() {
if ($('.filter-single input').is(':checked')) {
$('<li>'+$(this).text()+'/</li>').appendTo('.filters-current');
} else {
// what goes here?
}
});
FILTER HTML:
<div class="checkbox filter-single">
<input type="checkbox" value=".rain"/>
<label>Rain</label>
</div>
LABEL HTML:
<div class="filter-details">
<span class="filter-title">Filters:</span>
<ul class="filters-current"></ul>
</div>
正是我一直在尋找的那就沒辦法了!每天學些新東西 :) –