我想,我按下這裏uploadify如何讓我按下
$(".J-fileup").uploadify({
'formData': {},
'swf': '/assets/uploadify/uploadify.swf',
'uploader': '/admin/resource/upload',
'cancelImg': '/assets/uploadify/uploadify-cancel.png',
'onUploadSuccess': function (file, data, response) {
var data = JSON.parse(data);
if (data.status == 1) {
//--I want id of the button that I pressed here
}
}
});