图像上传部分中的跨浏览器图像预览在 ie8 中不起作用

Posted

技术标签:

【中文标题】图像上传部分中的跨浏览器图像预览在 ie8 中不起作用【英文标题】:Cross Browser image preview in Image upload section is not working in ie8 【发布时间】:2012-11-23 00:24:22 【问题描述】:

我网站上传图片部分的图片预览在 IE8+ 浏览器中不工作。但在 IE7 和 IE6 中工作正常。我正在使用下面的代码来实现图像预览功能。 JS:

var loadImageFile = (function () 
    if (window.FileReader) 
        var oPreviewImg = null, oFReader = new window.FileReader(),
            rFilter = /^(?:image\/bmp|image\/cis\-cod|image\/gif|image\/ief|image\/jpeg|image\/jpeg|image\/jpeg|image\/pipeg|image\/png|image\/svg\+xml|image\/tiff|image\/x\-cmu\-raster|image\/x\-cmx|image\/x\-icon|image\/x\-portable\-anymap|image\/x\-portable\-bitmap|image\/x\-portable\-graymap|image\/x\-portable\-pixmap|image\/x\-rgb|image\/x\-xbitmap|image\/x\-xpixmap|image\/x\-xwindowdump)$/i;

        oFReader.onload = function (oFREvent) 
            if (!oPreviewImg) 
                var newPreview = document.getElementById("imagePreview");
                oPreviewImg = new Image();
                oPreviewImg.style.width = (newPreview.offsetWidth).toString() + "px";
                oPreviewImg.style.height = (newPreview.offsetHeight).toString() + "px";
                newPreview.appendChild(oPreviewImg);
            
            oPreviewImg.src = oFREvent.target.result;
        ;

        return function () 
            var aFiles = document.getElementById("imageInput").files;
            if (aFiles.length === 0)  return; 
            if (!rFilter.test(aFiles[0].type))  alert("You must select a valid image file!"); return; 
            oFReader.readAsDataURL(aFiles[0]);
        

    
    if (navigator.appName === "Microsoft Internet Explorer") 
        return function () 
            document.getElementById("imagePreview").filters.item("DXImageTransform.Microsoft.AlphaImageLoader").src = document.getElementById("imageInput").value;

        
    
)();

CSS 样式:

#imagePreview 
    width: 160px;
    height: 120px;
    float: right;
    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod=scale);

</style>

HTML:

<html>
    <body>
        <div id="imagePreview"></div>

        <form name="uploadForm">
            <p><input id="imageInput" type="file" name="myPhoto" onchange="loadImageFile();"><br>
            <input type="submit" value="Send"></p>
        </form>

    </body>
</html>

此代码可在 IE 6 和 IE7 中运行,但不能在 IE8+ 中运行。任何人都知道上面代码中的问题是什么。运行示例链接: https://developer.mozilla.org/files/3699/crossbrowser_image_preview.html

【问题讨论】:

如果将匿名函数分配给变量,那么它的意义何在? IE8 ignores "filter" CSS styles的可能重复 这些过滤器“.filters.item("DXImageTransform.Microsoft.AlphaImageLoader")”是否需要导入才能在 IE7 中工作? 【参考方案1】:

IE8 将过滤器替换为 -ms-filter。 如果要同时支持 IE7 和 8,则需要同时提供这两种样式。 -ms-filter 的语法也与 filter 略有不同。

您可以在此处找到更多信息: IE8 ignores "filter" CSS styles

【讨论】:

【参考方案2】:

按照Post中的方法做

您的代码中缺少的是高度和宽度设置

试试这个

  imagePreview.style.width = "160px";
    imagePreview.style.height = "120px";

如果图像尺寸大于mentioend尺寸,它不会在您编码时扩展,请将sizingMethod=scale更改为sizingMethod=image

【讨论】:

【参考方案3】:

请查看此帖子: How to upload preview image before upload through javascript 我已经测试过了,必须做的一件事:

IE8 需要更改安全设置:互联网设置、安全、自定义级别:

 [] 上传文件到服务器时包含本地目录路径
 ( ) 禁用
 (o) 启用

启用此选项后,您的演示在 ie8 中运行良好! https://developer.mozilla.org/files/3699/crossbrowser_image_preview.html 谢谢!

【讨论】:

以上是关于图像上传部分中的跨浏览器图像预览在 ie8 中不起作用的主要内容,如果未能解决你的问题,请参考以下文章

cloudinary上的图像上传在heroku中不起作用

带有 MultiPart 表单数据中的参数的图像上传在 Alamofire 4.0 中不起作用

JCrop 在我的 JavaScript 代码中不起作用

多部分上传在 QObject 中不起作用移动到线程

jQuery .animate() marginLeft 在 IE8 及更低版本中不起作用 - 参数无效

React-Native 多部分照片上传在 android 中不起作用