jQuery 多文件上传抛出错误 onload

发布于 2024-12-26 05:28:17 字数 509 浏览 0 评论 0原文

我正在尝试使用这个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

白云不回头 2025-01-02 05:28:17

看起来您需要提供“onFileRemove”函数作为对象参数:

$('#<%=flImage.ClientID%>')[0].MultiFile({
    onFileRemove: function (element, value, master_element) {
        alert('heyoooo');
    }
});

这允许您提供多个函数作为参数,并且所有函数参数都是可选的。

It looks like you need to supply your 'onFileRemove' function as an object parameter:

$('#<%=flImage.ClientID%>')[0].MultiFile({
    onFileRemove: function (element, value, master_element) {
        alert('heyoooo');
    }
});

This allows you to supply multiple functions as parameters and all function parameters are optional.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文