这是HTML代码
<input type="file" name="event_image" class="form-control ChangeEvntImage UploadEventImage tab5-required-check" value="<?=$v_image['image']?>">
这是我的输出:
我想要这个:
答案 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]);
}
}