如何利用javascript使一个html网页的标题栏,地址栏,菜单栏都隐藏起来...答:<script language='javascript'> if(window.opener==null){ window.opener=null;window.close();window.open('当前页面','','toolbar=no,menubar=no,location=no,status=no,width=' + screen.width + ',height=' + screen.height + ',left=0,top=0');} </script> ...