你好,我是 cakephp3 的大佬,我想使用 bootstrap-UI 来设置我的选择框和单选框值,比如 cakephp formhelper。
<?= $this->Form->select(
'field',
['Low (7%)', 'middle(15%)', 'Quality (25%)', 'High (30%)'],['label'=>'Error Correction','class'=>'form-control']
); ?>
<br/>
<?= $this->Form->radio(
'Image Format',
[
['value' => 'png', 'text' => 'png', 'class'=>'radio-inline'],
['value' => 'gif', 'text' => 'gif'],
['value' => 'jpeg', 'text' => 'jpeg'],
['value' => 'svg', 'text' => 'svg'],
['value' => 'eps', 'text' => 'eps'],
], ['checked' => 'true','label'=>'Image Format','class'=>'radio-inline']
); ?>
任何人都可以帮助我并提前感谢