我无法在输入中显示文件名

时间:2019-03-28 10:46:45

标签: javascript php html twitter-bootstrap symfony

我已遵循官方文档https://symfony.com/doc/current/controller/upload_file.html

文件的上传工作正常,但是问题出在我选择文件进行上传时第一次出现问题,我无法在输入中显示它

仅在将鼠标放在输入上时才显示

enter image description here

如何解决这个问题?

1 个答案:

答案 0 :(得分:-1)

问题已解决

我已添加此脚本

<script>
// Add the following code if you want the name of the file appear on select
$(".custom-file-input").on("change", function() {
  var fileName = $(this).val().split("\\").pop();
  $(this).siblings(".custom-file-label").addClass("selected").html(fileName);
});
</script>