問題描述想通過a標(biāo)簽實(shí)現(xiàn)canvas的下載,相同的代碼在谷歌瀏覽器下可行,在火狐下卻無法實(shí)現(xiàn)相關(guān)代碼// 請把代碼文本粘貼到下方(請勿用圖片代替代碼)var mycanvas = $("#export11").find("canvas")[0]; var image = mycanvas.toDataURL("image/jpeg");
var $a = document.createElement('a'); $a.setAttribute("href", image); $a.setAttribute("download", this.state.nowDate + "多能點(diǎn)號圖"); $a.click();
火狐瀏覽器的a標(biāo)簽無法實(shí)現(xiàn)下載
MYYA
2018-08-26 15:23:25