上传图片预览 [ 新手入门 ]
$("#users-uploadfile").change(function(e){
var myfile = e.target.files||e.dataTransfer.files;
console.log(window.URL.createObjectURL(myfile[0]));
$("#viewimg").attr('src',window.URL.createObjectURL(myfile[0]));
});
$("#users-uploadfile").change(function(e){
var myfile = e.target.files||e.dataTransfer.files;
console.log(myfile.length);
var html ='';
for(i=0;i<myfile.length;i++){
console.log(window.URL.createObjectURL(myfile[i]));
html+= '<img id="viewimg1" src="'+window.URL.createObjectURL(myfile[i])+'" style="width: 100px;height: 100px;"/>';
// $("#viewimg0").attr('src',window.URL.createObjectURL(myfile[i]));
}
$("#imgView").html(html);
});
共 0 条回复
没有找到数据。
灰太狼
注册时间:2016-11-19
最后登录:2023-07-14
在线时长:76小时17分
最后登录:2023-07-14
在线时长:76小时17分
- 粉丝28
- 金钱3290
- 威望150
- 积分5550