首页
视频
资源
登录
转
jQuery实现图片预览功能
3872
人阅读
2022/9/30 10:10
总访问:
272662
评论:
0
收藏:
0
手机
分类:
前端
``` /** * 图片预览 */ function priview(imgShow) { /* jquery中的live()方法在jquery1.9及以上的版本中已被废弃了, 如果使用,会抛出TypeError: $(...).live is not a function错误。 imgShow为为传入对象:例如$('#img') */ imgShow.on('change',function () { //获取文件 var file = this.files[0]; //读取文件 if (window.FileReader) { var reader = new FileReader(); reader.readAsDataURL(file); //监听文件读取结束后事件 reader.onloadend=function (e) { $("#imgShow").attr('src',e.target.result); }; } }) } ```
👈{{preArticle.title}}
👉{{nextArticle.title}}
评价
{{titleitem}}
{{titleitem}}
{{item.content}}
{{titleitem}}
{{titleitem}}
{{item.content}}
素衣清颜淡若尘
旧年素颜,君记否
博主信息
排名
6
文章
6
粉丝
16
评论
8
文章类别
随笔
15篇
前端
15篇
.NET
4篇
小程序
2篇
Python
2篇
C++
2篇
数据库
9篇
PHP
1篇
后端
1篇
移动开发
1篇
最新文章
最新评价
{{item.articleTitle}}
{{item.blogName}}
:
{{item.content}}
关于我们
ICP备案 :
渝ICP备18016597号-1
网站信息:
2018-2024
TNBLOG.NET
技术交流:
群号656732739
联系我们:
contact@tnblog.net
公网安备:
50010702506256
欢迎加群
欢迎加群交流技术