我試圖讓子類別複選框僅在相關父複選框被選中時才顯示。複選框子類別隱藏,直到選中父複選框
目前我使用下面的代碼:
<script type="text/javascript">
$(document).ready(function() {
$("#listing_category-401 .children").css("display", "none");
$(".option").change(function() {
if ($('checkbox[id="in-listing_category-401"] :checked').val() == "true") {
$("#listing_category-401 .children").slideDown("fast");
}
});
});
有什麼建議?你需要更多信息嗎? – Ben
相關的HTML會很好。哪裏有問題?如果你的.val()==「true」中的console.log(「test」)是否會觸發?提供一個小提琴或你的HTML,我們可以迅速解決。 – edencorbin
你好。感謝您的答覆。請看小提琴:https://jsfiddle.net/c59s6qsb/ – Ben