我对jquery事件有一些问题。
$('.attachments').on('change', '.attachPhoto', function() {
var container = $(this).parents('.imgattach');
console.log($(this))
console.log(container)
var fileReader = new FileReader(),
files = this.files,
file;
if (!files.length) {
return;
}
file = files[0];
.....
});
问题是,$(this)是附件列表的第一个元素,我无法捕获被触发的输入事件。