我正在使用以下代码
<form id="export" target="_blank" action='exported_data.php' method="get" >
<input type="hidden" id="data" name="data" value="">
</form>
这是我的 JS
$.ajax({ url: baseUrl + 'entities/GetExportDetails/entity/'+entity,
type: "GET",
async: false,
data: {"id": recordid},
success: function( response ) {
$("#data").val(response);
$("#export").submit();
}
});
现在的问题是我在表单中使用target=_blank。当我在 FF 或 IE 中提交表单时,exported_data.php 在新选项卡中打开,但在 Chrom 中它在弹出窗口中打开。我不希望它在弹出窗口中打开。你能帮我它在所有浏览器的新标签页中打开吗