この複数のチェックボックスがありました:
<?php echo $this->Form->input('Power', array('type'=>'select', 'multiple' => 'checkbox', 'options' => $poderes, 'label' => false)); ?>
これにより、次の HTML が生成されます。
<div class="input select"><input type="hidden" name="data[Power][Power]" value="" id="PowerPower"/>
<div class="checkbox"><input type="checkbox" name="data[Power][Power][]" value="1" id="PowerPower1" /><label for="PowerPower1">Negociacao</label></div>
<div class="checkbox"><input type="checkbox" name="data[Power][Power][]" value="2" id="PowerPower2" /><label for="PowerPower2">Comerciais</label></div>
<div class="checkbox"><input type="checkbox" name="data[Power][Power][]" value="3" id="PowerPower3" /><label for="PowerPower3">Compras</label></div>
</div>
を入れてクラスチェンジtitle
したい。<div class="checkbox">
私は多くの方法を試しましたが、うまくいきません。
どうすればいいですか?