当前位置:网站首页 > 技术博客 > 正文

上传图片获取图片地址

最近项目要实现一个用户上传图片之后能够进行预览功能,由于计算机不予许浏览器获取到本地资源的真实路径,防止被窃取信息,使用原本的方法获取到的本地路径却是被加密处理过的,无法直接使用。经过一番查阅终于找到了一个比较实用的方法,亲测可以使用,所以来进行记录一下,也分享给大家,以供参考。

 
 
  1. <%@ page language="java" contentType="text/html; charset=utf-8"
  2. pageEncoding= "utf-8"%>
  3. <html>
  4. <head>
  5. <script type="text/javascript" src="js/jquery-1.7.2.js"> </script>
  6. <script type="text/javascript">
  7. $( function(){
  8. function getObjectURL(file){
  9. var url= null
  10. if( window.createObjectURL!= undefined){ // basic
  11. url= window.createObjectURL(file)
  12. } else if( window.URL!= undefined){ // mozilla(firefox)
  13. url= window.URL.createObjectURL(file)
  14. } else if( window.webkitURL!= undefined){ // webkit or chrome
  15. url= window.webkitURL.createObjectURL(file)
  16. }
  17. return url ;
  18. }
  19. $( "#face_upload").change( function(){
  20. var objUrl=getObjectURL( this.files[ 0]);
  21. var size= this.files[ 0].size;
  22. if(size>= * 10)bottomTip( "图片超过10M了哦", 0);
  23. else{
  24. if(objUrl){
  25. $( "#xs").attr( "src",objUrl);
  26. }
  27. }
  28. }) ;
  29. })
  30. </script>
  31. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  32. <title>Insert title here </title>
  33. </head>
  34. <body>
  35. <form enctype="multipart/form-data">
  36. 商品图片 <input type="file" id="face_upload"/> <br>
  37. <img src="" height="200" width="200" id="xs"/>
  38. </form>
  39. </body>
  40. </html>

预览图如下:


以上console出的路径就是本地路径,复制下来能够直接访问本地图片,感谢大家!

版权声明


相关文章:

  • 文件上传file2024-10-22 10:01:02
  • 异步文件传输2024-10-22 10:01:02
  • rockstar已分配存储空间2024-10-22 10:01:02
  • 06-linux服务器连接-04-ttyd通过浏览器远程连接服务器2024-10-22 10:01:02
  • ttyd -- 分享任意命令行程序到网页上2024-10-22 10:01:02
  • 安装open in browse插件的步骤2024-10-22 10:01:02
  • fake files2024-10-22 10:01:02
  • openwrt关闭tso2024-10-22 10:01:02
  • 期货赚差价2024-10-22 10:01:02
  • IE8上传文件时javascript取文件的真实路径的问题("C:\fakepath\xxxxx )2024-10-22 10:01:02