防止点击父类别单选按钮

时间:2017-01-15 23:01:53

标签: javascript jquery wordpress function categories

我有这个功能/脚本将复选框转换为单选按钮(在“类别”元数据框中),但我需要稍微扩展一下功能,但我不确定如何去做。< / p>

剧本:

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' );

现在需要:阻止用户选择父类别。

在下面显示的图像中,您应该能够选择除Bandicoot之外的任何内容,因为Bandicoot是父级(它有子级)。哦,允许选择Bandicoot的儿童用品。

所以规则应该是:如果你是父母,你就不能被选中,但你的孩子可以选择。

Category radio buttons

2 个答案:

答案 0 :(得分:1)

取决于您的输出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();
});

答案 1 :(得分:0)

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

&#13;
&#13;
$(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;
    }
  });
})
&#13;
ul {
  list-style: none;
}
&#13;
<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>
&#13;
&#13;
&#13;