有没有办法在后台打开一个新窗口?

时间:2014-02-25 23:19:57

标签: jquery html

我想知道是否有某种方法可以直接在浏览器的后台打开一个新窗口?

<a href=# target="_blank">Link</a>

1 个答案:

答案 0 :(得分:1)

您可以使用Javascript实现此目的:

function open2(url, opt){
   if (opt == 0) // current window
     window.location = url;
   else if (opt == 1) // new window
     window.open(url);
   else if (opt == 2) // background window
     {
        window.open(url); 
        self.focus();
     }
}

希望这有帮助。