实际上我正在尝试使用href编写锚标记,以便在新窗口中打开,而不是在新选项卡中打开 当我在某处读取target =“_ blank”在新标签或新窗口中打开,所以我尝试如下
<a href="http://www.gmail.com" target="_blank">gmail</a>
但它在新标签页中打开,而不是在新窗口中打开。
现在我需要在新窗口中打开javascript和JQuery。
提前致谢。
答案 0 :(得分:4)
为什么选择JavaScript或jquery,就像这样做
<a href="#" onclick="window.open('http://www.google.com/','mywindow','width=1100,height=500');">Open google in new window</a>
答案 1 :(得分:1)
做
$("a").click(function(e){
e.preventDefault();
var url = $(this).attr('href');
var windowName = $(this).attr('id');
window.open(url, windowName, "height=500,width=500");
});
答案 2 :(得分:0)
这对我有用......
<a href="#" onclick="window.open('http://www.google.com','new window',config='height=900, width=1200, toolbar=no, menubar=no, scrollbars=yes, resizable=no,location=no, directories=no, status=no')">Click Here</a>