HTML事件屬性onreset

2018-01-05 13:58 更新

HTML事件屬性onreset


觸發(fā) onreset 屬性事件當(dāng)表單被重置時(shí)。

HTML5中的新功能

onreset 屬性是HTML5中的新特性。

句法

<elementName onreset="script">

支持的標(biāo)簽

<form>, 
<keygen>

瀏覽器兼容性

onreset Yes Yes Yes Yes Yes


例子

<!DOCTYPE html>
<html>
<body>

<form onreset="myFunction()">
  Enter name: <input type="text">
  <input type="reset">
</form>

<script>
function myFunction() {
    console.log("The form was reset");
}
</script>

</body>
</html>

Click to view the demo



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

掃描二維碼

下載編程獅App

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

編程獅公眾號(hào)