HTML事件屬性onbeforeprint

2018-01-05 13:58 更新

HTML事件屬性onbeforeprint


onbeforeprint 屬性事件是當(dāng)頁(yè)面即將打印時(shí)或在打印對(duì)話框出現(xiàn)前觸發(fā)。

HTML5中的新功能

onbeforeprint 屬性是HTML5中的新特性。

句法

<element onbeforeprint="script or javascript function name">

支持的標(biāo)簽

<body>

瀏覽器兼容性

onbeforeprint Yes Yes Yes Yes Yes


例子

<!DOCTYPE html>
<html>
<body onbeforeprint="myFunction()">

<h1>Try to print this document</h1>

<script>
function myFunction() {
    alert("print");
}
</script>

</body>
</html>

Click to view the demo



以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)