0
uploader= new plupload.Uploader({
runtimes: 'gears,html5,flash,silverlight,browserplus,html4',
browse_button: 'pickFile',
container: 'FileContainer',
max_file_size: '2048mb',
url: '<%=Url.Action("testaction", "testcontroller",
new { area = "testArea" }) %>',
flash_swf_url: flashVideomm,
silverlight_xap_url: silverLightmm,
multipart: true,
multipart_params: { "form": ''
},
filters: [
{ title: "Excel file", extensions: "xlsx" }
]
});
uploader.bind('FileUploaded', function (up, file, info) {
// Redirect after successful upload
alert(info);
});
위의 예제에서 "FileUploaded"이벤트는 전혀 발생하지 않습니다. 문제가 무엇인지 잘 모릅니다.Plupload -FileUploaded 이벤트가 실행되지 않음