我使用uploadify插件v3.2.1,问题是,我使用文件限制,但是当我上传文件超过该限制时,它没有显示任何错误消息。我试图在谷歌上找到并发现我需要更多代码,就像这样
'onSelectError' : function() {
alert('The file ' + file.name + ' returned an error and was not added to the queue.');
}
但还是不行,有人知道吗?也许是在查询文件中,但我不知道如何修改它。
答案 0 :(得分:2)
尝试
onSelectError': function (file, errorCode, errorMsg) {
alert('The file ' + file.name + ' returned an error and was not added to the queue.');
}