我想用最少的装饰打开一个弹出窗口。我尝试了以下代码:
<script>
newwindow =
window.open('http://jquery.com','name',
'height=300px,width=400px,scrollbars=no');
if (window.focus) {newwindow.focus()}
</script>
一些装饰品(菜单栏,滚动条,..)已经不见了。但是仍然存在一些装饰(标题栏,地址栏)。
如何去除所有的装饰品?我想要一个跨浏览器的解决方案。