例
執行一個JavaScript當表單被重置:
<form onreset="myFunction()">
Enter name: <input type="text">
<input type="reset">
</form>
試一試» 更多"Try it Yourself"下面的例子。
定義和用法
當一個形式是復位發生時,事件onreset。
瀏覽器支持
事件 | |||||
---|---|---|---|---|---|
onreset | 是 | 是 | 是 | 是 | 是 |
句法
在HTML:
< 試一試»
在JavaScript:
object .onreset=function(){ 試一試»
注意: addEventListener()在Internet Explorer 8和更早版本不支持的方法。
技術細節
泡沫: | 是 |
---|---|
取消: | 是 |
事件類型: | 事件 |
支持的HTML標籤: | <FORM>, <keygen> |
DOM版本: | 2級事件 |
更多示例
例
顯示已插入文本字段它被重置前的文本:
var x = document.getElementById("myInput");
alert("Before reset, the text
was: " + x.value);
試一試» 例
使用reset()中的HTML DOM表單對象的方法來重置形式。 當發生這種情況時,onreset事件觸發,這將觸發報警功能。
// Reset the value of all elements in a form with id="myForm"
function
myResetFunction() {
document.getElementById("myForm").reset();
}
// Alert some text
when the form is reset
function myAlertFunction() {
alert("The form was reset");
}
試一試» <事件對象