我想知道是否有某种方法可以直接在浏览器的后台打开一个新窗口?
<a href=# target="_blank">Link</a>
答案 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();
}
}
希望这有帮助。