1

我已经浏览了几个类似的线程/帖子,但是我无法根据我的要求调整代码。我希望用户上传图像文件;这应该会打开一个新的弹出窗口,我将在其中显示标准图像(带大小)并将用户提交的图像放在旁边以进行比较。我不希望 php 或 ajax 这样做;我想使用 javascript 来做同样的事情。这是来自预览图像的工作代码,无需上传到我的服务器

<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
<script>

function onFileLoad(e) { 
    $('#preview').append('<img src="'+e.target.result +'"/>');  
}

function displayPreview(files) {
    var reader = new FileReader();
    reader.onload = onFileLoad;
    reader.readAsDataURL(files[0]);
}
</script>
</head>
<body>
<span id="preview"></span>
<input type="file" onchange="displayPreview(this.files);"/>
</body>
</html>

我需要在新窗口中打开预览。我该怎么做呢?

4

1 回答 1

0

尝试这个

window.open('e.target.result');
于 2013-11-06T07:12:58.760 回答