我在CodeIgniter框架中有一个表单,我想使用HTML“必需”属性。我怎样才能做到这一点?
$data = array(
'name' => 'username',
'id' => 'username',
'value' => 'johndoe',
'maxlength' => '100',
'size' => '50',
'style' => 'width:50%',
);
echo form_input($data);
需要的结果:
<input type="text" name="username" id="username" value="johndoe"
required maxlength="100" size="50" style="width:50%" />