我有一个函数,如果存在值大于 63 的复选框,则显示 div,否则隐藏 div。
function show_no_taxonomies() {
if ($('.store_checkbox:checked').val() > 63){
$("#hidden_taxon_message").show();
$("#hidden_taxon_message").text('This store does not have any texonomies');
}else {
$("#hidden_taxon_message").hide(); // something is selected
}
}
我需要重新定义这个条件 if 语句来计算分类。我在所有这些复选框上都附加了这个标签:
taxonomies_count="0"
我需要条件语句来说明是否存在taxonomies_count大于 0 的复选框,而不是显示 div,否则隐藏 div。
<input id="idea_store_ids_" class="store_checkbox" type="checkbox" value="124"
taxonomies_count="0" name="idea[store_ids][]"></input>