拖拉时为什么拖动会变成2张相同的图像?我一直试图做到这一点,但我似乎无法找到一个解决方案,我甚至改变了具有唯一名称的id名称,但似乎无法解决问题。他们对此的任何解决方案都是我的小提琴https://jsfiddle.net/2taya76y/4/
// External added
jQuery(download).ready(function () {
jQuery(".file-upload-wrapper").hide();
jQuery(".out-put-img1").hide();
jQuery("#imajes45").change(function () {
var selected = jQuery('#imajes45').val();
if (selected == "new-upload") {
jQuery(".file-upload-wrapper").show();
} else {
jQuery(".file-upload-wrapper").hide();
}
});
//File
function readURL(input) {
if (input.files && input.files[0]) {
var reader = new FileReader();
reader.onload = function (e) {
jQuery(".out-put-img1").show();
$('#output1').attr('src', e.target.result);
// / $('.append-img').append('src', e.target.result);
}
reader.readAsDataURL(input.files[0]);
}
}
jQuery("#upload-img1").change(function () {
readURL(this);
$('#dragbal').draggable();
$('#output1').resizable();
});
});