如何使用php在输入类型文件中回显文件名

时间:2019-02-21 11:18:06

标签: php

这是HTML代码

<input type="file" name="event_image" class="form-control ChangeEvntImage UploadEventImage tab5-required-check" value="<?=$v_image['image']?>">

这是我的输出:

This is my output

我想要这个:

I want this

2 个答案:

答案 0 :(得分:1)

由于安全原因,您无法设置HTML File输入的值。
请检查旧版Stackoverflow帖子的答案:link

答案 1 :(得分:0)

正如@kerbholz所说,您必须编写javascript。也许这段代码可以帮助您解决问题。

HTML

<!DOCTYPE html>
<html>
<head>
<link class="jsbin" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1/themes/base/jquery-ui.css" rel="stylesheet" type="text/css" />
<script class="jsbin" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script class="jsbin" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.0/jquery-ui.min.js"></script>
<meta charset=utf-8 />

</head>
<body>
      <input id="image" type="file" name="event_image" class="form-control ChangeEvntImage UploadEventImage tab5-required-check" value="<?=$v_image['image']?> ">
</body>
</html>

脚本

   function readURL(input) {
        if (input.files && input.files[0]) {
            var reader = new FileReader();

            reader.onload = function (e) {
                $('#image')
                    .attr('src', e.target.result)
                    .width(150)
                    .height(200);
            };

            reader.readAsDataURL(input.files[0]);
        }
    }