用户需要时获取文本字段

时间:2018-06-16 08:48:23

标签: javascript jquery laravel vue.js

我在表单中创建了图片upload file文本字段。如果用户想要多选字段。我想为'用户'选择文件数的用户授予权利。

让我告诉你我的文字字段。

<div class="form-group col-lg-10">
    {!! Form::label('file', 'Upload Chart:') !!}
    {!! Form::file('file', null,['class'=>'form-control'])!!}
</div>

  • 我应该需要jquery吗?
  • 我应该在Jquery做什么?

1 个答案:

答案 0 :(得分:1)

在html5中,您只需添加multiple属性即可支持多个文件上传。

<input type="file" name="field_name_for_files" multiple>

我不知道你正在使用的Form助手,但它应该接受第三个参数数组中的'multiple' => 'multiple'

试试这个:

<div class="form-group col-lg-10"> {!! Form::label('file', 'Upload Chart:') !!} {!! Form::file('file', null,['class'=>'form-control', 'multiple' => 'multiple'])!!} </div>

希望这有帮助。