jQuery点击头像上传并预览图片
时间:2021-07-25 08:39:27|栏目:jquery|点击: 次
先给大家展示下效果图:

HTML代码
<div class="img_show img_show1"> <img src="img2/img06.jpg" width="103" height="103" alt=""> <input type="file" class="upfile" accept="*/*"> </div>
jQuery代码
DS.upfile = function(){
$('.img_show').each(function(){
var $this = $(this),
btn = $this.find('.upfile'),
img = $this.find('img');
btn.on('change',function(){
var file = $(this)[0].files[0],
imgSrc = $(this)[0].value,
url = URL.createObjectURL(file);
if (!/\.(jpg|jpeg|png|JPG|PNG|JPEG)$/.test(imgSrc)){
alert("请上传jpg或png格式的图片!");
return false;
}else{
img.attr('src',url);
img.css({'opacity':'1'});
}
});
});
}();
上一篇:jQuery插件easyUI实现通过JS显示Dialog的方法
栏 目:jquery
下一篇:jQuery层级选择器实例代码
本文标题:jQuery点击头像上传并预览图片
本文地址:http://www.codeinn.net/misctech/161304.html






