我有一个通过window.open方法打开的新窗口,在该窗口的内容中我有一个链接“target = _blank”。
单击此链接时,在父窗口中打开新选项卡而不是内容所在的选项卡。我还注意到,对于该窗口(使用window.open创建),Ctrl + T快捷键(打开空白选项卡,Firefox)会不行。
我检查了window.open规范,但我没有找到任何允许此行为的选项。
var a = window.open("http://www.google.pl",
"Test",
"width=640,height=480,scrollbars=yes,toolbar=yes,menubar=no,location=no,resizable=yes");
a.focus();
设置toolbar = yes使其在Firefox中有效。知道如何让它在chrome中工作吗?
答案 0 :(得分:1)
你能展示一些代码吗?
否则;试试javascript:
function OpenNew(){
window.open("http://www.google.se", "_blank");
}
RGDS