这是标记:
<label for="big" class="labels">
<input type="radio" name="type" value="big" id="big"> Grandes images
</label>
它是由此产生的:
<?php
$radio_data = array('id'=>'big','name'=>'type','type'=>'radio','value'=>'big');
echo form_label(form_input($radio_data)." Petites images\n",'small', $label_data);
?>
当我单击标签时,通常会选择单选按钮,但这并没有发生。我正在使用推特引导程序。
编辑:
新的 HTML:
<span>
<input type="radio" name="type" value="small" id="small">
<label for="small" class="labels radio"> Petites images</label>
</span>
新的PHP:
<?php
echo form_input($radio1_data);
echo form_label(" Petites images", 'small', $label_data);
?>
但是,当点击标签时,仍然没有选择收音机。