本文介绍了如何防止javascript重定向退出全屏模式?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试使用javascript在已经全屏模式下重定向到新网址,但重定向电流退出全屏模式,我不想要。我使用了错误的JS代码吗?
I am trying to redirect to a new url using javascript within an already fullscreen mode but the redirect currenlt exits fullscreen mode which I dont want. Am I using the wrong JS code?
window.location.href = demo_url;
或
window.location = demo_url;
推荐答案
事实上,我这是错误的做法 - 如果您使用的是Chrome扩展程序,并且想要像我一样想要全屏模式,那么您可以使用以下内容:
In fact, I was going about this the wrong way - if you using a Chrome extension and want full screen mode as I was, then you can just use the following:
chrome.windows.getCurrent(null, function(window) {
chrome.windows.update(window.id, {state: "fullscreen"});
})
这篇关于如何防止javascript重定向退出全屏模式?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!