上传图片 js 不确定不多图片
Posted 无限REIZ
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了上传图片 js 不确定不多图片相关的知识,希望对你有一定的参考价值。
<input id="sfz_shouchi" name="sfz_shouchi" type="file" onchange="preImg(this.id,‘sfz_shouchi_img‘);" accept="image/*" required="">
<script language="javascript"> function getFileUrl(sourceId) { var url; if (navigator.userAgent.indexOf("MSIE") >= 1) { // IE url = document.getElementById(sourceId).value; } else if (navigator.userAgent.indexOf("Firefox") > 0) { // Firefox url = window.URL.createObjectURL(document.getElementById(sourceId).files.item(0)); } else if (navigator.userAgent.indexOf("Chrome") > 0) { // Chrome url = window.URL.createObjectURL(document.getElementById(sourceId).files.item(0)); } return url; } function preImg(sourceId, targetId) { var url = getFileUrl(sourceId); var imgPre = document.getElementById(targetId); imgPre.src = url; } </script>
以上是关于上传图片 js 不确定不多图片的主要内容,如果未能解决你的问题,请参考以下文章
asp微信jssdk上传图片,asp上传自动压缩图片,是通过微信上传的