如何在Internet Explorer中打开网页,以便当我双击它时,它会打开全屏,只显示标题栏。
答案 0 :(得分:0)
var popup = window.open(location.href, "_blank",
"menubar=0,location=0,toolbar=0,status=0,directories=0,width=" +
screen.width + ",height=" + screen.height);
popup.moveTo(0, 0);