我在向cakephp 3中的单选按钮标签添加一个类时遇到了问题。
我的代码是:
<?= $this->Form->input('enroll',[
'type'=>'radio',
'options'=>[
[
'value'=>'1',
'text'=>'Yes',
'class'=>'checkbox'
],
[
'value'=>'0',
'text'=>'No',
'class'=>'checkbox'
]
],
'label'=>false
])
?>
这是生成以下Html:
<div class="input radio">
<input type="hidden" value="" name="enroll">
<label for="enroll-1">
<input type="radio" id="enroll-1" class="checkbox" value="1" name="enroll">
Yes
</label>
<label for="enroll-0">
<input type="radio" id="enroll-0" class="checkbox" value="0" name="enroll">
No
</label>
</div>
我想要的是:
<div class="input radio">
<input type="hidden" value="" name="enroll">
<label for="enroll-1" class="checked-input">
<input type="radio" id="enroll-1" class="checkbox" value="1" name="enroll">
Yes
</label>
<label for="enroll-0" class="checked-input">
<input type="radio" id="enroll-0" class="checkbox" value="0" name="enroll">
No
</label>
我希望将一个类添加到<label for=''>
。
我试过的是:
<?= $this->Form->input('enroll',[
'type'=>'radio',
'templates'=>[
'label'=>'<label {{attrs}} class="checked-input">{{text}}</label>',
'radioWrapper'=>'{{label}}'
'options'=>[
[
'value'=>'1',
'text'=>'Yes',
'class'=>'checkbox'
],
[
'value'=>'0',
'text'=>'No',
'class'=>'checkbox'
]
],
'label'=>false
])
?>
但我无法做到这一点。我尝试了很多其他的东西,但他们也没有工作。请帮忙。
答案 0 :(得分:1)
只需修改nestingLabel
模板而不是label
模板
'nestingLabel' => '{{hidden}}<label{{attrs}} class="checked-input">{{input}}{{text}}</label>'
答案 1 :(得分:0)
这也有效。
<?= $this->Form->input('current_password', [
'type' => 'password',
'required' => true,
'label' => ['class' => 'hello']]);
?>