HTML5 onbeforeprint 事件屬性
HTML5onbeforeprint事件屬性
HTML 事件屬性
實例
在頁面設置打印,但在打印對話框出現前執行 JavaScript :
<body onbeforeprint="printmsg()">
瀏覽器支持
目前只有 Internet Explorer 和 Firefox 瀏覽器支持 onbeforeprint 事件屬性。
定義和用法
onbeforeprint 屬性在用戶設置頁面打印,但在打印對話框出現前觸發。
提示:onbeforeprint 屬性通常與 onafterprint 屬性一起使用。
HTML 4.01 與 HTML5之間的差異
onbeforeprint 屬性是HTML5新屬性。
語法
<elementonbeforeprint="script">
屬性值
值 | 描述 |
---|---|
script | onafterprint中執行的腳本。 |
HTML 事件屬性