我们的志愿者还没有将这篇文章翻译为 中文 (简体)。加入我们帮助完成翻译!
The WindowEventHandlers.onafterprint property sets and returns the onafterprint EventHandler for the current window.
Syntax
window.onafterprint = event handling code
Notes
Some browsers (including Firefox 6 and later and Internet Explorer) send beforeprint and afterprint events to let content determine when printing may have occurred. You can use this to adjust the user interface presented during printing (such as by displaying or hiding user interface elements during the print process).
The afterprint event is raised after the user prints or aborts a print dialog.
Specification
Not part of any specification.
Browser compatibility
| Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
|---|---|---|---|---|---|
| Basic support | No support | 6.0 | (Yes) | No support | No support |
| Feature | Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
|---|---|---|---|---|---|
| ? | ? | ? | ? | ? | ? |
See also
window.printwindow.onbeforeprint- Printing
- It's able to do equivalent things in Webkit-based browser with
matchMedia('print') -
var mediaQueryList = window.matchMedia('print'); mediaQueryList.addListener(function(mql) { if (!mql.matches) { console.log('onafterprint'); }; });
文档标签和贡献者
标签:
此页面的贡献者:
hbloomer,
irvinfly,
teoli,
fscholz,
cpigat,
jsx,
kscarfone,
libreGeekingKid,
deepakyadav,
Sheppy,
ethertank,
trevorh,
fusionchess
最后编辑者:
hbloomer,