是的,我也看到了其他关于此的问题,但他们没有帮助我,所以这是我的代码。
$("#raspe4atat_<?= $ui->item_id ?>").click(function(){
$.ajax({
url: "/raspe4atat/<?= $ui->item_id ?>",
type: "GET",
success: function(){
$.ajax({
url: "/iframe/<?= $ui->item_id ?>",
type: "GET",
success: function(r){
$("#not_enough_money_<?= $ui->item_id ?>").append(r);
setTimeout(function(){
document.getElementById('pdf_<?= $ui->item_id ?>').contentWindow.print();
//window.frames['iframe_<?= $ui->item_id ?>'].print();
}, 1000);
}
});
}
});
return false;
});
这是 iframe:
<iframe name="iframe_<?= $ui->item_id ?>" style="position: absolute; top: -1000px;" id="pdf_<?= $ui->item_id ?>" src="<?= base_url().'pdf/'."coupon_info_".$ui->user_id.'.pdf' ?>" width="0" height="0">
</iframe>
此代码在 google chrome 中有效,但在 Firefox 中无效。
首先它在服务器中创建pdf,然后在页面中生成,然后等待1秒然后打印它,但它在firefox中不起作用,如果我取消注释的行,然后firefox会询问我是否要停止更多对话窗口?你能帮助我吗?