我只是在尝试一个简单的应用程序,使浏览器全屏显示。这适用于 Internet Explorer,但不适用于 Firefox。我也想知道,在 Mac OC 中可以做同样的事情吗?我是否必须对 Mac OS 进行更改(使用 safari、firefox 等)
下面的代码。
<html>
<head>
<script type="text/javascript">
function fullScreen()
{
var obj = new ActiveXObject("Wscript.shell");
obj.SendKeys("{F11}");
}
</script>
</head>
<body>
<form>
<input type="button" value="Click me!" onclick="fullScreen()" />
</form>
<p>By pressing the button above, a function will be called. The function will alert a message.</p>
</body>
</html>
问候泽山