js window.open为什么不能打开本地磁盘的网页
发布网友
发布时间:2022-04-26 11:40
我来回答
共1个回答
热心网友
时间:2022-06-27 23:59
open方法现在会被浏览器阻止,你可以这样实现
var a = document.createElement("a");
a.setAttribute("href", ‘xxx.html’);
a.setAttribute("target", "_blank");
a.setAttribute("id", "openwin");
document.body.appendChild(a);
a.click();