更改脚本“jQuery-File-Upload”的显示顺序

时间:2013-09-09 19:34:37

标签: jquery mysql file-upload

我正在使用此script

效果很好,但我希望通过将最后一个图像放在列表的开头而不是底部来对结果进行排序。作为MySql ORDER BY .... 谁能帮我? 感谢

2 个答案:

答案 0 :(得分:3)

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

  1. 打开“jquery.fileupload-ui.js”
  2. 搜索“prependFiles:”(减去引号)
  3. 将此行上的“false”值更改为“true”(再次,减去引号)
  4. 完成后,您的代码将如下所示:

    // By default, files are appended to the files container.
    // Set the following option to true, to prepend files instead:
    prependFiles: true,
    

答案 1 :(得分:0)

您想要的选项称为:prependFiles

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

将此选项设置为true,改为添加文件。

输入:boolean

默认值:false

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

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

而只是像这样初始化你的fileUpload组件:

$('#fileupload').fileupload({
    prependFiles: true
});