如何从jQuery回调中打开新的浏览器选项卡

时间:2013-05-10 10:09:34

标签: javascript jquery html ajax

我已尝试以下方法来实现这一目标:

但是在回调中调用window.open时都不起作用。这是我的代码

$.post('api', { 
    }, function() {
    var win = window.open('target-file', '_blank');
    win.focus();
    });

4 个答案:

答案 0 :(得分:2)

试试这个:

 $.post('api', { 
    }, function() {
    window.open('target-file', '_blank');
   });

答案 1 :(得分:1)

尝试使用窗口名称

window.open("url", "NameOfNewWindow");

SEE HERE

答案 2 :(得分:0)

使用MySurfaceWindow = window.open("url","windowname","settings");
见下面的例子:

MySurfaceWindow = window.open('/DesktopModules/DMS/DMS.PatientEChart/Surface Pages/Surface6.aspx?SurfaceTooth=' + $("#lbl" + $(this).val()).text() + '&ProcedureID=0' + '&ColorD=I' + '', '', 'height=240,width=200,top=' + top + ',left=' + left + 'status=no,toolbar=no,menubar=no,location=no,resizable=no,scrollbars=no');

答案 3 :(得分:0)

您可以将这个简单的jQuery snipplet添加到您的源中,以在Web浏览器的新选项卡中打开每个外部链接

$(document).ready(function(){
  $('a').each(function() {
    var a = new RegExp('/' + window.location.host + '/');
    if(!a.test(this.href)) {
      $(this).click(function(event) {
        event.preventDefault();
        event.stopPropagation();
        window.open(this.href, '_blank');
      });
    }
  });
});