执行window.open时,我想打开一个新选项卡,但在我的页面中会打开一个新窗口。如何在新标签页中打开?
这是我的代码:
$('.visu_cr_pdf').click(function(){
$.post("{ART_wwwroot}page.php?module={module}&action=gene_p4_pdf",$('#p4_cr'), function(data) {
var reponse = $.parseJSON(data);
if(reponse.status=='success'){
window.open('{ART_wwwroot}page.php?module={module}&action=visu_p4_cr','_blank');
return false;
}
});
});