Site.js 295 B

12345678910111213
  1. $(function()
  2. {
  3. // 图片选择名称展示
  4. $('input[name="home_site_logo_img"]').on('change', function()
  5. {
  6. var fileNames = '';
  7. $.each(this.files, function()
  8. {
  9. fileNames += '<span class="am-badge">' + this.name + '</span> ';
  10. });
  11. $('#form-file-logo-tips').html(fileNames);
  12. });
  13. });