上传图片预览

Posted webnote

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了上传图片预览相关的知识,希望对你有一定的参考价值。

<script type="text/javascript">

        function previewImage(file) {
    var WIDTH = 80;
    var HEIGHT = 80;
    var div = document.getElementById(‘preview‘);
    if (file.files && file.files[0]) {
        div.innerhtml = ‘<img id=HeadImages>‘;
        var img = document.getElementById(‘HeadImages‘);
        img.onload = function () {
            var rect = clacImgZoomParam(WIDTH, HEIGHT, img.offsetWidth, img.offsetHeight);
            img.width = rect.width;
            img.height = rect.height;
            //                 img.style.marginLeft = rect.left+‘px‘;
            img.style.marginTop = rect.top + ‘px‘;
        }
        var reader = new FileReader();
        reader.onload = function (evt) { img.src = evt.target.result; }
        reader.readAsDataURL(file.files[0]);
    }
	}
</script>  

<form name="form5" id="form5" method="post" action="#">

<input type="file" name="file5" id="file5" onchange="previewImage(this)"/>
<div id="preview"></div>
</form>

 

以上是关于上传图片预览的主要内容,如果未能解决你的问题,请参考以下文章

9行代码实现图片上传和预览(自定义按钮上传)

图片上传预览

django上传图片并且带有预览功能

上传前多张图片预览

nodejs实现本地上传图片并预览功能

图片上传即时预览效果