我正在使用此script
效果很好,但我希望通过将最后一个图像放在列表的开头而不是底部来对结果进行排序。作为MySql ORDER BY .... 谁能帮我? 感谢
答案 0 :(得分:3)
完成后,您的代码将如下所示:
// 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
});