我已尝试以下方法来实现这一目标:
但是在回调中调用window.open
时都不起作用。这是我的代码
$.post('api', {
}, function() {
var win = window.open('target-file', '_blank');
win.focus();
});
答案 0 :(得分:2)
试试这个:
$.post('api', {
}, function() {
window.open('target-file', '_blank');
});
答案 1 :(得分:1)
答案 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');
});
}
});
});