0
我正在開發一個firefox extension
。我需要在調用print
函數時將一些html
元素注入到當前瀏覽器選項卡中加載的網頁中。然後頁面應採取打印機隨着注射html
元素如何在Firefox中調用'onbeforeprint'函數
我搜索和MDC
https://developer.mozilla.org/En/DOM/HTMLBodyElement
,我不知道用功能的發現onbeforeprint
功能。我試圖用它作爲一個事件。
window.addEventListener("onbeforeprint",
function(){alert("Print called");},
false);
但它失敗。請在這方面幫助我。