我尝试了以下方法来实现这一目标:
但是window.open
从回调内部调用时两者都不起作用。这是我的代码
$.post('api', {
}, function() {
var win = window.open('target-file', '_blank');
win.focus();
});
我尝试了以下方法来实现这一目标:
但是window.open
从回调内部调用时两者都不起作用。这是我的代码
$.post('api', {
}, function() {
var win = window.open('target-file', '_blank');
win.focus();
});
尝试这个:
$.post('api', {
}, function() {
window.open('target-file', '_blank');
});
使用 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');
您可以将这个简单的 jQuery 片段添加到您的源代码中,以在 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');
});
}
});
});