如何屏蔽ie菜单和工具条,不让其显示?(100分)

  • 主题发起人 主题发起人 hbsbx
  • 开始时间 开始时间
H

hbsbx

Unregistered / Unconfirmed
GUEST, unregistred user!
请用html或javaScript或VBScript代码实现
 
window.open('new.htm','','menubar=no,toolbar=no,status=no')
 
以上代码在javaScript或VBScript不执行
请给出详细例子
 
请将下列代码放到<head> 和</head>
script language="JavaScript" type="text/JavaScript">
<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
}
//-->
</script>

下列代码放到<body>和</body>
<a href="#" onClick="MM_openBrWindow('你要连接到的地址.htm','','location=yes,status=yes,resizable=yes,width=400,height=500')">连接地址</a>
 
crazyD:你的代码可以,但有一个问题:
如何将其最大化?
 
<HTML>
<script>
self.moveTo(-5,-100)
self.resizeTo(screen.Width+30,screen.Height+100)
</script>
<body bgcolor=red oncontextmenu="return false;">测试!!
</body>
</HTML>
 
能否在window.open中加入参数来实现?
 
to hbsbx

我规定了他的尺寸 是400*500 width=400,height=500'

你可以自己设置啊 ,不是绝对的!
 
我是想让它自适应屏幕大小
 
width:=screen.widh
heigh:=screen.heigh
 
多人接受答案了。
 
后退
顶部