在jQuery上不起作用.buttonset()

时间:2013-05-05 05:18:36

标签: jquery wordpress jquery-ui wordpress-theming

我有一些:由wordpress初始化的复选框元素。现在我将.buttonset()函数设置为#format但这不起作用......就像这个示例:http://jqueryui.com/button/#checkbox

HTML:

<div id="format">
     <?php
     $categories = get_categories();
     foreach ($categories as $category) { ?>
     <input type="checkbox" name="check" value="<?php echo $category->cat_ID; ?>">
     <label><?php echo $category->cat_name;?></label><?php } ?>
     *//ADD STATIC HTML:*
     <input type="checkbox" id="id" /><label for="id">B</label>

</div>

JS:

$('#format').buttonset();
$('input[type=checkbox]').removeClass('ui-helper-hidden-accessible');

$(':checkbox[name=check]').each(function( i ){
    var nameID = 'check'+ (i+1);
    this.id = nameID;
    $(this).next('label').prop('for', nameID); 
});

如果我添加了一个:带有静态HTML的复选框元素,它运行良好。

<input type="checkbox" id="id" /><label for="id">U</label>

这是生成的HTML:

<div id="format" class="ui-buttonset">
    <input type="checkbox" name="check" value="3" class="check" id="check1">
          <label for="check1">
          <span class="ui-button-text">CAT1</span>
          </label>      
    <input type="checkbox" name="check" value="4" class="check" id="check3">
          <label for="check3">
          <span class="ui-button-text">CAT2</span>
          </label>              
    <input type="checkbox" name="check" value="5" class="check" id="check4">
          <label for="check4">
          <span class="ui-button-text">CAT3</span>
          </label>              
     <input type="checkbox" id="id" class="">
          <label for="id" class="ui-button ui-widget ui-state-default ui-button-text-only ui-corner-right ui-corner-left" role="button" aria-disabled="false" aria-pressed="false">
          <span class="ui-button-text">B</span></label>

</div>

1 个答案:

答案 0 :(得分:0)

你没有关闭php代码中的输入类型复选框

<input type="checkbox" name="check" value="<?php echo $category->cat_ID; ?>"/>