日期:2014-05-16 浏览次数:20577 次
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<title>Demo</title>
<script type="text/javascript">
while (true) {
    try {
	var w = 400, h = 300;
        window.resizeTo(w, h);
        window.moveTo((window.screen.width - w) / 2, (window.screen.height - h) / 2);
        break;
    } catch (e) { continue; }
}
</script>
<HTA:APPLICATION ID="app"
	APPLICATIONNAME="monster" 
	BORDER="dialog"
	MAXIMIZEBUTTON="no"
	SCROLLFLAT="yes"
	CAPTION="yes"
	INNERBORDER="no"
	ICON=""
	SCROLL="no"
	SHOWINTASKBAR="yes"
	SINGLEINSTANCE="yes"
	SYSMENU="yes"
	WINDOWSTATE="normal" />
<head>
<body>
It works!
</body>
</html>