如何在plupload中自定义header

How to customize header in plupload

如何自定义 header 左侧带有彩色加号徽标和文本 'Select files and Add files to the upload queue and click the start button.'?

我们可以通过修改文件"jquery.ui.plupload.js"来自定义header。该文件将在文件夹 "js/jquery.ui.plupload".

下可用

您需要修改js文件中的以下几行(第216、217行)。

'<div class="plupload_header_title">' + _("Select files") + '</div>' +
'<div class="plupload_header_text">' + _("Add files to the upload queue and click the start button.") + '</div>' +

你也可以修改css文件(js/jquery.ui.plupload/css/jquery.ui.plupload.css)去掉[=]里面的+图标25=].

希望对您有所帮助!