js 隐藏标题栏

来源:百度知道 编辑:UC知道 时间:2024/06/04 05:17:07
我想隐藏IE的所有界面,包括标题栏,菜单栏,工具栏,状态栏等.
不使用window.open是否可以做到?怎么做?
如果一定要使用window.open 那么怎么隐藏标题栏?(声明:直接使用titlebar=no 并没能隐藏.其他的栏则隐藏成功)

如果回答前者,愿再贡献50积分.谢谢

标题栏应该不能隐藏

<script language="javascript">
if (this.name!='FullWnd')
{
window.open(location.href,'FullWnd','fullscreen,scrollbars=no');
this.parent.opener=null;
this.parent.close();
}
</script>