我正在使用这个脚本
它运作良好,但我想通过将最后一个图像放在列表的开头而不是底部来对结果进行排序。作为 MySql ORDER BY.... 任何人都可以帮助我吗?谢谢
我正在使用这个脚本
它运作良好,但我想通过将最后一个图像放在列表的开头而不是底部来对结果进行排序。作为 MySql ORDER BY.... 任何人都可以帮助我吗?谢谢
好消息!它作为可配置选项内置于功能中。做这个:
完成后,您的代码将如下所示:
// By default, files are appended to the files container.
// Set the following option to true, to prepend files instead:
prependFiles: true,
您想要的选项称为:prependFiles
默认情况下,文件会附加到文件容器中。
将此选项设置为 true,以代替预先添加文件。
类型:布尔值
默认值:假
(以上来自https://github.com/blueimp/jQuery-File-Upload/wiki/Options#prependfiles)
您不需要编辑任何核心文件,例如 jquery.fileupload-ui.js !
相反,只需像这样初始化您的 fileUpload 组件:
$('#fileupload').fileupload({
prependFiles: true
});