在firefox和IE中打开没有地址栏的新弹出窗口

在firefox和IE中打开没有地址栏的新弹出窗口

希望有人能提供帮助。只是无法在没有地址栏的Firefox中打开新窗口。IE可以正常使用以下代码

window.open('/pageaddress.html', 'winname', 
  directories=0,titlebar=0,toolbar=0,location=0,status=0,     
    menubar=0,scrollbars=no,resizable=no,
      width=400,height=350);

我需要为所有浏览器制作


茅侃侃
浏览 697回答 3
3回答

九州编程

检查window.open上的mozilla文档。窗口功能(“directory = ...,...,height = 350”)等参数应该是一个字符串:window.open('/pageaddress.html','winname',"directories=0,titlebar=0,toolbar=0,location=0,status=0,menubar=0,scrollbars=no,resizable=no,width=400,height=350");尝试在浏览器中使用。请注意,某些功能可能会被用户首选项覆盖,例如“location”(请参阅doc。)
打开App,查看更多内容
随时随地看视频慕课网APP