次のコードを使用しています
<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 ではポップアップで開きます。ポップアップで開かないようにします。すべてのブラウザで新しいタブで開くことを手伝ってもらえますか