mirror of
https://gitee.com/zongzhige/shopxo.git
synced 2026-07-04 04:53:00 +08:00
13 lines
280 B
JavaScript
Executable File
13 lines
280 B
JavaScript
Executable File
$(function()
|
|
{
|
|
// 图片选择名称展示
|
|
$('input.site-logo').on('change', function()
|
|
{
|
|
var fileNames = '';
|
|
$.each(this.files, function()
|
|
{
|
|
fileNames += '<span class="am-badge">' + this.name + '</span> ';
|
|
});
|
|
$($(this).data('tils-tag')).html(fileNames);
|
|
});
|
|
}); |