js上传图片回显
作者:互联网
$("#file01").change(function(){ var objUrl = getObjectURL(this.files[0]) ; console.log("objUrl = "+objUrl) ; if (objUrl) { $("#img01").attr("src", objUrl); } }) ;
//建立一個可存取到該file的url function getObjectURL(file) { var url = null ; if (window.createObjectURL!=undefined) { // basic url = window.createObjectURL(file) ; } else if (window.URL!=undefined) { // mozilla(firefox) url = window.URL.createObjectURL(file) ; } else if (window.webkitURL!=undefined) { // webkit or chrome url = window.webkitURL.createObjectURL(file) ; } return url ; }
标签:undefined,回显,url,objUrl,js,window,createObjectURL,file,上传 来源: https://blog.51cto.com/u_15242378/2852385