jQuery 多文件上传抛出错误 onload
我正在尝试使用这个 jquery 插件( http://www. fyneworks.com/jquery/multiple-file-upload/#tab-Examples ),由于某种原因,当我尝试在其上设置事件时,我得到“预期功能”。谁能帮助我吗?
除了尝试绑定到事件之外,一切正常。
$(document).ready(function () {
$('#<%=flImage.ClientID%>')[0].MultiFile(function () {
onFileRemove: function (element, value, master_element) {
alert('heyoooo');
}
});
});
I am trying to use this jquery plugin ( http://www.fyneworks.com/jquery/multiple-file-upload/#tab-Examples ) and for some reason when i try to set the events on it I get "Function expected". Can anyone help me?
Everything works fine, except trying to bind to the events.
$(document).ready(function () {
$('#<%=flImage.ClientID%>')[0].MultiFile(function () {
onFileRemove: function (element, value, master_element) {
alert('heyoooo');
}
});
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来您需要提供“onFileRemove”函数作为对象参数:
这允许您提供多个函数作为参数,并且所有函数参数都是可选的。
It looks like you need to supply your 'onFileRemove' function as an object parameter:
This allows you to supply multiple functions as parameters and all function parameters are optional.