我對CakePhp有點新鮮。 我有一個輸入是一個複選框與標籤,我想分配一個類到標籤。將標籤添加到複選框cakephp
這是我到目前爲止有:
echo $this->Form->input('', array(
'type' => 'checkbox',
'label' => 'I agree to the conditions',
'separator' => '</div><div class="controls">',
'format' => array('before', 'input', 'label','between', 'after','error'),
));
我想有HTML是這樣的:
<div class="control-group ">
<div class="controls">
<input type="checkbox" name="" id="" '>
<label class='small_text'> <!-- can't get this one in cake -->
I agree to the conditions
</label>
</div>
</div>
我得到了幾乎所有的權利,但我錯過了類small-text
爲label
。任何想法如何實現?感謝名單!
謝謝大家,也爲明確的解釋! – mikey 2015-02-23 08:01:08