php facetwp取消选中父复选框

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php facetwp取消选中父复选框相关的知识,希望对你有一定的参考价值。

<?php
/** uncheck the parent when checking a child checkbox **/
add_action( 'wp_footer', function() { ?>

    <script>
    (function($) {
        $(document).on('click', '.facetwp-depth .facetwp-checkbox', function() {
            if ( $( this ).hasClass( "checked" ) ) {
                $(this).parent().prev().removeClass('checked');
                FWP.autoload();
            };
        });
    })(jQuery);
    </script>

<?php }, 100 );

以上是关于php facetwp取消选中父复选框的主要内容,如果未能解决你的问题,请参考以下文章

如何使用 jQuery 使用按钮选中/取消选中所有复选框?

如果我选中了父复选框,则所有子复选框都将在 php while 循环中被选中 [重复]

复选框 - 选中取消选中功能不起作用

以样式格式选择所有或部分父/子复选框

php facetwp index复选框保存为数组

php facetwp index复选框保存为数组