簡體   English   中英

window.print html 與 ajax

[英]window.print html with ajax

如何在ajax中使用window.print html?

在我的成功回調中

,
success(data){

//how to print the html in a new page?
}

我試過

var invoice = window.open(data, '_blank');
setTimeout(invoice.print(), 5);

setTimeout采用未執行的函數(不帶括號)或匿名函數。 反正我會這樣做:

var invoice = open(data);
invoice.onload = function(){
  this.print();
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM