防止单击 parent 类别单选按钮

Prevent parent category radio button from being clicked

我有这个 function/script 可以将复选框转换为单选按钮(在类别元框中),但我需要稍微扩展功能,但我不确定如何去做。

脚本:

function convert_root_cats_to_radio() {
    global $post_type;
?>
<script type="text/javascript">
jQuery("#categorychecklist>li>input").each(function(){
    this.disabled = "disabled";
});
jQuery("#categorychecklist>li>ul>li>input").each(function(){
    this.disabled = "disabled";
});
jQuery("#categorychecklist>li>label input").each(function(){
    this.type = 'radio';
});
jQuery("#categorychecklist>li>ul>li>label input").each(function(){
    this.type = 'radio';
});
// Hide the 'most used' tab
jQuery("#category-tabs li:odd").hide();
</script> <?php
}
add_action( 'admin_footer-post.php',     'convert_root_cats_to_radio' );
add_action( 'admin_footer-post-new.php', 'convert_root_cats_to_radio' );

现在需要什么:防止用户select进入parent类别。

例如,在下图中,您应该可以 select 除了 Bandicoot 之外的任何东西,因为 Bandicoot 是 parent(它有 children)。哦,允许 select 编辑 Bandicoot 的 children 项。

所以规则应该是:如果你是 parent,你不能被 select 教育,但你的 children 可以。

请检查脚本代码中的注释。

$(function() {
  $('input[type=radio]').on('click', function() {
    //assumes that radio button > wrapped around a label > wrapped around li 
    var liObj = $(this).parent().parent();
    if (liObj != undefined && $(liObj).is('li') && $(liObj).has('ul').length > 0) {
      return false;
    }
  });
})
ul {
  list-style: none;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<ul id='test'>
  <li>
    <label>
      <input type='radio' name='cat' />1</label>
  </li>
  <li>
    <label>
      <input type='radio' name='cat' />2</label>
  </li>

  <li>
    <label>
      <input type='radio' name='cat' />3</label>
    <ul>

      <li>
        <label>
          <input type='radio' name='cat' />3-1</label>
      </li>
      <li>
        <label>
          <input type='radio' name='cat' />3-2</label>

        <ul id='test'>
          <li>
            <label>
              <input type='radio' name='cat' />3-2-1</label>
          </li>
          <li>
            <label>
              <input type='radio' name='cat' />3-2-2</label>
          </li>
        </ul>



      </li>
    </ul>

  </li>


</ul>

取决于您的输出 html 的外观,您可以使用以下选项之一进行制作:

jQuery("#categorychecklist > li > ul").each(function(){
    jQuery(this).parent('li').children('label').children('input').attr('disabled', true);
});

或:

jQuery("#categorychecklist > li > ul").each(function(){
    jQuery(this).prev('label').children('input').attr('disabled', true);
});

甚至更好,删除收音机:

jQuery("#categorychecklist > li > ul").each(function(){
    jQuery(this).prev('label').children('input').remove();
});