如何使用jQuery在弹出窗口中预览输入类型=“文件”中的选定图像? [复制]
Posted
技术标签:
【中文标题】如何使用jQuery在弹出窗口中预览输入类型=“文件”中的选定图像? [复制]【英文标题】:How to preview selected image in input type="file" in popup using jQuery? [duplicate] 【发布时间】:2013-08-29 17:20:42 【问题描述】:在我的代码中,我允许用户上传图片。现在我想在同一个弹出窗口中将这个选定的图像显示为预览。我如何使用 jQuery 来做到这一点?
以下是我在弹出窗口中使用的输入类型。
html 代码:
<input type="file" name="uploadNewImage">
【问题讨论】:
您使用什么服务器端代码上传它?您将需要使用它。 看html5 FileReader @Prasad,你可能需要使用某种插件,访问这个plugins.jquery.com 你可以用 javascript 做到这一点......看这里:***.com/questions/4459379/… 【参考方案1】:Demo
HTML:
<form id="form1" runat="server">
<input type='file' id="imgInp" />
<img id="blah" src="#" />
</form>
jQuery
function readURL(input)
if (input.files && input.files[0])
var reader = new FileReader();
reader.onload = function (e)
$('#blah').attr('src', e.target.result);
reader.readAsDataURL(input.files[0]);
$("#imgInp").change(function()
readURL(this);
);
Reference
【讨论】:
感谢 prabu,但它没有给出图像的完整路径,它只是返回一个图像名称 您使用的浏览器 除 IE 外的所有 chrome、mozilla、opera、safari 使用 $('#imgInp').val() 获取完整路径 在 IE9 或 IE8 中不支持,但除此之外它有很好的支持...caniuse.com/#feat=filereader【参考方案2】:如果您使用的是 HTML5,请尝试以下代码 sn-p
<img id="uploadPreview" style="width: 100px; height: 100px;" />
<input id="uploadImage" type="file" name="myPhoto" onchange="PreviewImage();" />
<script type="text/javascript">
function PreviewImage()
var oFReader = new FileReader();
oFReader.readAsDataURL(document.getElementById("uploadImage").files[0]);
oFReader.onload = function (oFREvent)
document.getElementById("uploadPreview").src = oFREvent.target.result;
;
;
</script>
【讨论】:
接受的答案有什么不同?我没有看到任何与 HTML5 相关的差异......(顺便说一句,onload 声明应该在 .readAsDataURL 方法调用之前)【参考方案3】:您可以使用URL.createObjectURL
function img_pathUrl(input)
$('#img_url')[0].src = (window.URL ? URL : webkitURL).createObjectURL(input.files[0]);
#img_url
background: #ddd;
width:100px;
height: 90px;
display: block;
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<img src="" id="img_url" >
<br>
<input type="file" id="img_file" onChange="img_pathUrl(this);">
【讨论】:
【参考方案4】:只需检查我的脚本是否运行良好:
function handleFileSelect(evt)
var files = evt.target.files; // FileList object
// Loop through the FileList and render image files as thumbnails.
for (var i = 0, f; f = files[i]; i++)
// Only process image files.
if (!f.type.match('image.*'))
continue;
var reader = new FileReader();
// Closure to capture the file information.
reader.onload = (function(theFile)
return function(e)
// Render thumbnail.
var span = document.createElement('span');
span.innerHTML = ['<img class="thumb" src="', e.target.result,
'" title="', escape(theFile.name), '"/>'].join('');
document.getElementById('list').insertBefore(span, null);
;
)(f);
// Read in the image file as a data URL.
reader.readAsDataURL(f);
document.getElementById('files').addEventListener('change', handleFileSelect, false);
#list img
width: auto;
height: 100px;
margin: 10px ;
【讨论】:
【参考方案5】:您可以使用 ajax 上传来预览您选择的文件.. http://zurb.com/playground/ajax-upload
【讨论】:
但是如果他想在上传文件之前预览文件怎么办?以上是关于如何使用jQuery在弹出窗口中预览输入类型=“文件”中的选定图像? [复制]的主要内容,如果未能解决你的问题,请参考以下文章
什么是 jQuery,我可以在弹出窗口中显示选定复选框、下拉列表和翻转开关的文本值
当我在 jQuery Mobile 中单击弹出窗口上的链接时,如何防止在第一个输入项上自动对焦