我正在尝试从 html 中的文件输入中获取值并将其立即放入我喜欢的 div 中:
html:
<div class='pushLeft noOverflow' id='areaUpload'>
<input type='file' id='uploadFileHere' />
</div>
jQuery:
$(document).on("change", "#uploadFileHere", function(){
$("#areaUpload").html("<img src='" + $("#uploadFileHere").val() + "' />");
});
我遇到的问题是图像没有出现。我检查了文件路径,它正在返回:C:\fakepath\filenamehere.jpg
那么我该如何解决这个问题呢?