1

ワードプレスによって初期化される :checkbox 要素がいくつかあります。今、私は .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 で :checkbox 要素を追加すると、うまくいきます。

<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>
4

1 に答える 1

0

PHPコードで入力タイプのチェックボックスを閉じていませんでした

<input type="checkbox" name="check" value="<?php echo $category->cat_ID; ?>"/>
于 2013-05-05T06:54:22.437 に答える