Laravel:当var $ error中出现/没有错误时,如何自动对焦输入字段?

时间:2016-09-01 03:59:12

标签: laravel laravel-5 laravel-form

如果特定输入中存在错误,我想突出显示它并将其聚焦,并且按预期工作。

但是,如果没有错误(默认情况),则第一个输入应该聚焦,而不是。如何将这两个选项添加到数组中?看看第一个表单组。

<div class="form-group {{ $errors->has('name') ? ' has-error' : '' }}">
    {{ Form::text('name', null, [
        (!$errors) ? 'autofocus' : '',        // if no errors, autofocus because default
        ($errors->has('name')) ? 'autofocus' : ''   // if error in name, autofocus
    ]) }}
</div>

<div class="form-group {{ $errors->has('email') ? ' has-error' : '' }}">
    {{ Form::email('email', null, [
        ($errors->has('email')) ? 'autofocus' : ''   // if error in email, autofocus
    ]) }}
</div>

<div class="form-group {{ $errors->has('password') ? ' has-error' : '' }}">
    {{ Form::password('password', [
        ($errors->has('password')) ? 'autofocus' : ''   // if error in password, autofocus
    ]) }}
    </div>
</div>

1 个答案:

答案 0 :(得分:1)

这应该有效:

....
'autofocus' => $errors->has('password') ? 'autofocus' : null,
....