我正在使用cakephp form helper,并且我想设置输入属性autoFocus。我能得到的最好的结果是autoFocus="autoFocus“,这是无效的。我需要将其设置为仅autoFocus。
<input type="text" name="fname" autofocus>我的代码是:
echo $this->Form->input('title', array('class'=>'form-control','autofocus'));发布于 2014-09-03 09:46:59
尝尝这个
<?php
echo $this->Form->create('Staff', array('action' => 'login'));
echo $this->Form->inputs(array(
'legend' => __(''),
'username' => array('autofocus'=>'autofocus'),
'password'
));
echo $this->Form->end('Login');
?>https://stackoverflow.com/questions/23986645
复制相似问题