如何打印我放在<input type =“ text” />中的<input type =“ file” />中的文件的文件名?

时间:2018-10-18 15:57:59

标签: javascript html forms

$('input[type="file"]').change(function(){
        $('input[type="text"]').val( $(this).val() );
});
<div class="form-group">
      <label for="exampleFormControlFile1">File</label>
      <input type="file" name="documento" class="form-control-file" required>
</div>
<div class="form-group">
      <label for="exampleFormControlInput1">Name File</label>
      <input type="text" name="dpro_filename_scan" class="form-control" required>
</div>

我有这个js文件,但它显示C:\ fakepath \ filename。我只需要文件名。

0 个答案:

没有答案