window.location.href不能在IE9下工作

window.location.href doesn't work at IE9

本文关键字:IE9 工作 不能 location href window      更新时间:2023-09-26

嗨,我用下面的代码保存一个画布。

var img = canvas.toDataURL("image/png").replace("image/png", "image/octet-stream");
window.location.href = img;  

但是IE9不工作。不能打开数据:image/octet-stream;base64,iVBORw0KGgoAAAANSUhEUgAAB4AAA.....

如何在IE9中使其工作?

可以尝试使用

window.location.assign(img); // or
window.location = img;

查看window.location