我有这个多个复选框:
<?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">
改变班级。我尝试了很多方法,但都不起作用。
我该怎么做?