検索

ホームページ  >  に質問  >  本文

javascript - data:application/vnd.ms-excel设置excel名称

window.open('data:application/vnd.ms--excel;base,' + base64data);怎么设置excel表格名称

ringa_leeringa_lee2815日前1551

全員に返信(1)返信します

  • 怪我咯

    怪我咯2017-04-11 12:55:22

    不使用window.open()方式下载excel。
    更改为:
    document.getElementById(a标签id).href ='data:application/vnd.ms-excel;base,' + base64data;//必须是a标签,否则无法下载改名
    document.getElementById(a标签id).download = fileName;

    返事
    0
  • キャンセル返事