0

我想允许用户在某些页面上只上传 1 个文件,而在其他页面上只上传 1 个以上的文件。有地方可以改这个号码

var parentWidget = ($.blueimpFP || $.blueimp).fileupload;
$.widget('blueimpUI.fileupload', parentWidget, {
    options: {
        // By default, files added to the widget are uploaded as soon
        // as the user clicks on the start buttons. To enable automatic
        // uploads, set the following option to true:
        autoUpload: false,
        // The following option limits the number of files that are
        // allowed to be uploaded using this widget:
        maxNumberOfFiles: undefined,

但是如果我在这里更改它,它将应用于网站上的所有 jQuery Upload File 控件。如何自定义选项 maxNumberOfFiles 以实现我的目的。

4

1 回答 1

0

你不能只为每个页面定义选项中的值吗?

第 1 页

{ maxNumberOfFiles: 5}

第2页

{ maxNumberOfFiles: 1}

或者将它包装在它自己的函数中,将你想要的文件数量作为参数传递?

编辑:好的 - 自从我发布这个问题以来,你已经稍微改变了这个问题,但同样的事情也适用

于 2012-06-27T11:11:01.147 回答