下图中的上传按钮允许用户选择照片。应立即显示图像,并使用“下一步”按钮发布请求。
我是按照以下方式做到的:
<form class="form-horizontal" role="form" method="POST" action='{{URL::route('postImage')}}' runat="server">
<div class="form-group">
<label class='col-md-4 control-label'>Profile Picture</label>
<div class='col-md-6'>
<img src='/images/default.jpg' id='image' class="img-responsive img-circle img-thumbnail img_profile pull-left">
<input type="file" name='profile_picture' id="file_ID" class='hidden' >
<a href='#' class="btn btn-primary" onclick="document.getElementById('file_ID').click(); return false;"><span class='glyphicon glyphicon-camera'></span> Upload Photo</a>
</div>
</div>
我的JS代码如下:
function readURL(input) {
if (input.files && input.files[0]) {
var reader = new FileReader();
reader.onload = function (e) {
$('#image').attr('src', e.target.result);
}
reader.readAsDataURL(input.files[0]);
}
}
$("#file_ID").change(function(){
readURL(this);
});
“下一步”按钮无效。它是类型提交的简单按钮。它可能有什么问题?我非常感谢你的帮助。