...
|
...
|
@@ -145,13 +145,13 @@ |
|
|
sizeType: ['original', 'compressed'], // 可以指定是原图还是压缩图,默认二者都有
|
|
|
sourceType: ['album', 'camera'], // 可以指定来源是相册还是相机,默认二者都有
|
|
|
success: function (res) {
|
|
|
var html1 = '';
|
|
|
var html = '';
|
|
|
$(res.localIds).each(function (key, localId) {
|
|
|
html1 += uploadImages(localId,1);
|
|
|
console.log(html1);
|
|
|
console.log(uploadImages(localId,1));
|
|
|
// console.log(html);
|
|
|
});
|
|
|
console.log(html1);
|
|
|
$('#dom1').prepend(html1);
|
|
|
console.log(html);
|
|
|
$('#dom1').prepend(html);
|
|
|
}
|
|
|
});
|
|
|
});
|
...
|
...
|
|