我正在尝试在已经全屏模式下使用 javascript 重定向到新的 url,但重定向 currenlt 退出了我不想要的全屏模式。我使用了错误的 JS 代码吗?
window.location.href = demo_url;
或者
window.location = demo_url;
我正在尝试在已经全屏模式下使用 javascript 重定向到新的 url,但重定向 currenlt 退出了我不想要的全屏模式。我使用了错误的 JS 代码吗?
window.location.href = demo_url;
或者
window.location = demo_url;
如果更改文档地址,浏览器将始终退出全屏模式。
要获得相同的视觉效果,您唯一能做的就是在具有 100% 高度和宽度的 iframe 中显示“新”页面。
事实上,我的做法是错误的 - 如果您使用 Chrome 扩展程序并像我一样想要全屏模式,那么您可以使用以下内容:
chrome.windows.getCurrent(null, function(window) {
chrome.windows.update(window.id, {state: "fullscreen"});
})