如何在javascript中实现精确的全屏?

时间:2010-01-07 13:50:56

标签: javascript

我尝试了How to make the window full screen with Javascript (stretching all over the screen)

但它不起作用。

修改

我的意思是它应该全屏填满我的所有电脑。

1 个答案:

答案 0 :(得分:4)

像这样:

alert("Please press F11");

无法在Javascript中将现有窗口完全全屏显示。

你可以得到的最接近的是打开一个弹出窗口并祈祷它不会被弹出窗口拦截器阻挡,如下所示:

open("http://google.com", null, 
  "height=" + screen.availHeight + ",width=" + screen.availWidth + ",status=no,toolbar=no,menubar=no,location=no")