在打开的窗口上编辑HTML代码

时间:2011-08-18 22:14:06

标签: c# html edit

我需要的是在我要打开的窗口中,有这样的:

width="989" height="560"

我希望宽度和高度都是屏幕的宽度和高度。

1 个答案:

答案 0 :(得分:0)

我认为你的意思是你要打开的网页的HTML包含固定的宽度和高度(在上面的代码片段中显示)。

由于服务器不知道客户端浏览器在屏幕上的位置,也不知道屏幕的大小,因此无法指定页面的大小。相反,您需要使用Javascript来设置浏览器窗口的大小和位置:

<html>
<head>
    <title>Maximuizing Window</title>
</head>
<body width="300" height="200">
    <h1>Hello world</h1>    
    <p>
        This page should maximize ... but only if its opened alone
        and not as part of browser window containing other open tabs.
    </p>

<script type="text/javascript">
    // When we move the window, make sure to take into consideration the 
    // available screen height to acommodate the taskbar.
    window.moveTo(screen.width - screen.availWidth, screen.height - screen.availHeight);

    // Resize the browser window to the available width & height:
    window.resizeTo(screen.availWidth, screen.availWidth);
</script>
</body>
</html>

HTH。