1

我正在使用这个脚本

它运作良好,但我想通过将最后一个图像放在列表的开头而不是底部来对结果进行排序。作为 MySql ORDER BY.... 任何人都可以帮助我吗?谢谢

4

2 回答 2

3

好消息!它作为可配置选项内置于功能中。做这个:

  1. 打开“jquery.fileupload-ui.js”
  2. 搜索“prependFiles:”(减去引号)
  3. 将此行上的“false”值更改为“true”(同样,减去引号)

完成后,您的代码将如下所示:

// By default, files are appended to the files container.
// Set the following option to true, to prepend files instead:
prependFiles: true,
于 2013-09-09T20:01:24.417 回答
0

您想要的选项称为:prependFiles

默认情况下,文件会附加到文件容器中。

将此选项设置为 true,以代替预先添加文件。

类型:布尔值

默认值:假

(以上来自https://github.com/blueimp/jQuery-File-Upload/wiki/Options#prependfiles

您不需要编辑任何核心文件,例如 jquery.fileupload-ui.js !

相反,只需像这样初始化您的 fileUpload 组件:

$('#fileupload').fileupload({
    prependFiles: true
});
于 2015-04-19T20:13:33.830 回答