0
javascript函數我想如果用戶點擊打印或取消在瀏覽器的打印選項按鈕對特定網頁(例如文件 - >打印預覽,打印)檢測。我喜歡顯示一條消息(如果用戶單擊取消或打印,則會顯示一條消息)。運行瀏覽器的打印嚮導
這裏是我的代碼:
function printCheckout() {
(function() {
if(print){
///if print button click
} else {
///cancel button click
}
}());
window.print();
}
查看最高評分的答案http://stackoverflow.com/questions/3339789/onbeforeprint-and-onafterprint-equivalent-for-non-ie-browsers – teynon 2014-09-27 02:26:12
請先詢問你自己的其他問題的研究... – Kiyarash 2014-09-27 02:27:01
我的問題是當我點擊取消相同的消息出現 – zook 2014-09-27 02:32:33