我正在尝试这个javascript代码:
function PopupCenter(url, title, w, h)
{
var left = (screen.width/2)-(w/2);
var top = (screen.height/5)-(h/5);
return window.open(url, title, 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width='+w+', height='+h+', top='+top+', left='+left);
}
我想在我要删除Buttons
和Address Bar
的位置创建一个弹出窗口。我在此图片中提到了这两个区域:http://i.imgur.com/z7P5Em3.jpg
如何制作上述代码,以便删除这两个区域?请帮忙
答案 0 :(得分:1)
看看这些简单的模态窗口:http://www.ericmmartin.com/projects/simplemodal-demos/您也可以定义自己的CSS来自定义以满足您的需求。
答案 1 :(得分:0)
您无法删除IE 7 +
的此按钮和地址栏在Internet Explorer 7及更高版本中,出于安全(反欺骗)原因,您无法删除Internet区域窗口中的地址栏。