window.open('data:application/vnd.ms--excel;base,' + base64data);怎么設置excel表格名稱
ringa_lee
不使用window.open()方式下載excel。
更改為:
document.getElementById(a標簽id).href ='data:application/vnd.ms-excel;base,' + base64data;//必須是a標簽,否則無法下載改名
document.getElementById(a標簽id).download = fileName;
Copyright 2014-2025 http://ipnx.cn/ All Rights Reserved | php.cn | 湘ICP備2023035733號