我有POS软件,其中收据以3到4步打印。这是一个很长的方法。我想收到打印而不显示窗口打印对话框。直接打印到打印机 我正在使用PHP CodeIgniter Web框架。 在打印按钮上显示收据后,功能正在跟随
function PrintTicket() {
$('.modal-body').removeAttr('id');
window.print();
$('.modal-body').attr('id', 'modal-body');
}

<button type="button" class="btn btn-add hiddenpr" onclick="PrintTicket()"><?=label("print");?></button>
&#13;
答案 0 :(得分:0)
我们可以通过以下方式进行:
//For hide dialog box
function PrintTicket() {
$('.modal-body').modal('hide');
window.print();
}
//For show dialog box
function PrintTicket() {
window.print();
$('.modal-body').modal('show');
}