超简单的jq图片上传
Posted chenyudi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了超简单的jq图片上传相关的知识,希望对你有一定的参考价值。
<label class="file_img" for="file_imgs"> <input class="file_imgs" id=‘file_imgs‘ type="file" accept="image/jpg,image/jpeg,image/png" name="file" /> <img class="file_imgb" src="./images/file_img.jpg"> </label> <div class="show_imgs"> </div>
$(‘#file_imgs‘).on(‘change‘,function () { var file = $(‘#file_imgs‘).get(0).files[0]; var reader = new FileReader(); reader.readAsDataURL(file); reader.onloadend = function () { console.log(reader); $(‘.show_imgs‘).append(`<img class="show_imgs_item" src="${reader.result}" />`); } })
以上是关于超简单的jq图片上传的主要内容,如果未能解决你的问题,请参考以下文章