我使用导航栏启动了一个新窗口,但这里没有导航栏或箭头加载。
有人知道如何使用导航箭头加载新窗口吗?
window.open("https://www.google.com", "_blank",
"toolbar=yes,scrollbars=yes,resizable=yes,top=500,left=500,width=400,height=400");
答案 0 :(得分:0)
向location
选项添加其他窗口功能参数window.open
,例如:
window.open("https://www.google.com", "_blank","location,toolbar,scrollbars,resizable,top=500,left=500,width=400,height=400");