我正在使用laravel 5.6。在我的应用程序中,我具有使用javascript预览的图像上传器。这是我的图片上传预览,
<div class="form-group row">
<label for="image" class="col-form-label col-md-3">Image</label>
<div class="col-md-5">
<img id="preview"
src="{{asset((isset($image) && $image->image!='')?'images/'.$image->image:'images/noimage.png')}}"
height="200px" width="200px"/>
<input class="form-control" style="display:none" name="image" type="file" id="image">
<br/>
<a href="javascript:changeProfile();">Add Image</a> |
<a style="color: red" href="javascript:removeImage()">Remove</a>
<input type="hidden" style="display: none" value="0" name="remove" id="remove">
</div>
和我的JavaScript
<script>
function changeProfile() {
$('#image').click();
}
$('#image').change(function () {
var imgPath = $(this)[0].value;
var ext = imgPath.substring(imgPath.lastIndexOf('.') + 1).toLowerCase();
if (ext == "gif" || ext == "png" || ext == "jpg" || ext == "jpeg")
readURL(this);
else
alert("Please select image file (jpg, jpeg, png).")
});
function readURL(input) {
if (input.files && input.files[0]) {
var reader = new FileReader();
reader.readAsDataURL(input.files[0]);
reader.onload = function (e) {
$('#preview').attr('src', e.target.result);
$('#remove').val(0);
}
}
}
function removeImage() {
$('#preview').attr('src', '{{url('images/noimage.jpg')}}');
$('#remove').val(1);
}
</script>
但是当我单击“添加我的图像”按钮未选择图像时,该如何解决此问题?