如何实现打开网页时没有地址栏和工具栏
我有一个网站希望实现页面没有地址栏和工具栏,比如说,index.html是主页,要求一打开就没有地址栏和工具栏我知道window.open()可以做弹出窗口的效果,但我不...
我有一个网站
希望实现页面没有地址栏和工具栏,
比如说,index.html是主页,要求一打开就没有地址栏和工具栏
我知道window.open()可以做弹出窗口的效果,但我不是要那种,
我希望网页第一次打开就没有地址栏和工具栏!!!
应该怎么写啊!
在线,急等!!!! 展开
希望实现页面没有地址栏和工具栏,
比如说,index.html是主页,要求一打开就没有地址栏和工具栏
我知道window.open()可以做弹出窗口的效果,但我不是要那种,
我希望网页第一次打开就没有地址栏和工具栏!!!
应该怎么写啊!
在线,急等!!!! 展开
2个回答
展开全部
通过WINDOW的OPEN函数打开窗口,设置窗口属性
给你两个版本:
版本1:
function SetOpenWindowChild(WinName){
var strWindowType="";
var newwin=null;
//directories=[yes|no|1|0] 指定是否出现链接工具栏.
strWindowType=strWindowType+"directories=no" + ",";
//channelmode=[yes|no|1|0] (IE4.0 only)为1时以'全屏模式'(相当于按F11)打开,并出现频道栏.
strWindowType=strWindowType+"channelmode=no" + ",";
//fullscreen=[yes|no|1|0] (IE4.0 only) 指定全屏模式打开,如果忘了放置关闭按钮,只好用ALT+F4了.
strWindowType=strWindowType+"fullscreen=no" + ",";
//height=number 指定窗口的高度(px),最小值为100px
strWindowType=strWindowType+"height=250" + ",";
//width=number 窗口的宽度(px),最小值为100px.
strWindowType=strWindowType+"width=480" + ",";
//left=number 指定窗口的左沿离开屏幕左沿的距离(px).
strWindowType=strWindowType+"left=200" + ",";
//top=number 指定窗口的上沿离开屏幕的距离(px).
strWindowType=strWindowType+"top=150" + ",";
//location=[yes|no|1|0] 指定是否出现地址栏.
strWindowType=strWindowType+"location=no" + ",";
//menubar=[yes|no|1|0] 指定是否出现菜单.
strWindowType=strWindowType+"menubar=no" + ",";
//resizable=[yes|no|1|0] 指定窗口是否可被改变大小.
strWindowType=strWindowType+"resizable=no" + ",";
//scrollbars=[yes|no|1|0] 指定是否出现滚动条.
strWindowType=strWindowType+"scrollbars=yes" + ",";
//status=[yes|no|1|0] 指定是否出现状态栏
strWindowType=strWindowType+"status=no" + ",";
//toolbar=[yes|no|1|0] 指定是否出现工具栏 .
strWindowType=strWindowType+"toolbar=no" + ",";
//打开窗口
if (WinName=="null"){
newwin=window.open("","",strWindowType);
return newwin;
}
else{
window.open(WinName,"",strWindowType);
return null;
}
}
版本2:
window.open('./TelFaxHelp.aspx?SupplierCode=' + strSupplierCode +'&LeadClassCode=' + strLeadClassCode,'_Help', 'height=150,WIDTH=250,left=200,top=200,toolbar=no,scrollbars=no,menubar=no,resizable=yes',1);
其实这两个都是一样的!
不知道你明白了没有?
给你两个版本:
版本1:
function SetOpenWindowChild(WinName){
var strWindowType="";
var newwin=null;
//directories=[yes|no|1|0] 指定是否出现链接工具栏.
strWindowType=strWindowType+"directories=no" + ",";
//channelmode=[yes|no|1|0] (IE4.0 only)为1时以'全屏模式'(相当于按F11)打开,并出现频道栏.
strWindowType=strWindowType+"channelmode=no" + ",";
//fullscreen=[yes|no|1|0] (IE4.0 only) 指定全屏模式打开,如果忘了放置关闭按钮,只好用ALT+F4了.
strWindowType=strWindowType+"fullscreen=no" + ",";
//height=number 指定窗口的高度(px),最小值为100px
strWindowType=strWindowType+"height=250" + ",";
//width=number 窗口的宽度(px),最小值为100px.
strWindowType=strWindowType+"width=480" + ",";
//left=number 指定窗口的左沿离开屏幕左沿的距离(px).
strWindowType=strWindowType+"left=200" + ",";
//top=number 指定窗口的上沿离开屏幕的距离(px).
strWindowType=strWindowType+"top=150" + ",";
//location=[yes|no|1|0] 指定是否出现地址栏.
strWindowType=strWindowType+"location=no" + ",";
//menubar=[yes|no|1|0] 指定是否出现菜单.
strWindowType=strWindowType+"menubar=no" + ",";
//resizable=[yes|no|1|0] 指定窗口是否可被改变大小.
strWindowType=strWindowType+"resizable=no" + ",";
//scrollbars=[yes|no|1|0] 指定是否出现滚动条.
strWindowType=strWindowType+"scrollbars=yes" + ",";
//status=[yes|no|1|0] 指定是否出现状态栏
strWindowType=strWindowType+"status=no" + ",";
//toolbar=[yes|no|1|0] 指定是否出现工具栏 .
strWindowType=strWindowType+"toolbar=no" + ",";
//打开窗口
if (WinName=="null"){
newwin=window.open("","",strWindowType);
return newwin;
}
else{
window.open(WinName,"",strWindowType);
return null;
}
}
版本2:
window.open('./TelFaxHelp.aspx?SupplierCode=' + strSupplierCode +'&LeadClassCode=' + strLeadClassCode,'_Help', 'height=150,WIDTH=250,left=200,top=200,toolbar=no,scrollbars=no,menubar=no,resizable=yes',1);
其实这两个都是一样的!
不知道你明白了没有?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询