onreset 事件
onreset 事件
实例
重置表单时执行 JavaScript:
<form onreset="myFunction()">
Enter name: <input type="text">
<input type="reset">
</form>
完整实例:
<!DOCTYPE html>
<html>
<body>
<p>当您重置表单时,会触发提示文本的函数。</p>
<form onreset="myFunction()">
Enter name: <input type="text">
<input type="reset">
</form>
<script>
function myFunction() {
alert("The form was reset");
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
页面下方有更多 TIY 实例。
定义和用法
重置表单时会发生 onreset 事件。
浏览器支持
事件 | Chrome | IE | Firefox | Safari | Opera |
---|---|---|---|---|---|
onreset | 支持 | 支持 | 支持 | 支持 | 支持 |
语法
在 HTML 中:
<element onreset="myScript">
完整实例:
<!DOCTYPE html>
<html>
<body>
<p>本例演示如何将 "onreset" 事件分配给 form 元素。</p>
<p>当您重置表单时,会触发输出文本的函数。</p>
<form onreset="myFunction()">
Enter name: <input type="text">
<input type="reset">
</form>
<p id="demo"></p>
<script>
function myFunction() {
document.getElementById("demo").innerHTML = "The form was reset";
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
在 JavaScript 中:
object.onreset = function(){myScript};
完整实例:
<!DOCTYPE html>
<html>
<body>
<p>本例使用 HTML DOM 将 "onreset" 事件分配给表单元素。</p>
<p>当您重置表单时,会触发输出文本的函数。</p>
<form id="myForm">
Enter name: <input type="text">
<input type="reset">
</form>
<p id="demo"></p>
<script>
document.getElementById("myForm").onreset = function() {myFunction()};
function myFunction() {
document.getElementById("demo").innerHTML = "The form was reset";
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
在 JavaScript 中,使用 addEventListener() 方法:
object.addEventListener("reset", myScript);
完整实例:
<!DOCTYPE html>
<html>
<body>
<p>本例使用 addEventListener() 方法将 "reset" 事件附加到 form 元素。</p>
<p>当您重置表单时,会触发输出文本的函数。</p>
<form id="myForm">
Enter name: <input type="text">
<input type="reset">
</form>
<p id="demo"></p>
<script>
document.getElementById("myForm").addEventListener("reset", myFunction);
function myFunction() {
document.getElementById("demo").innerHTML = "The form was reset";
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
注释:Internet Explorer 8 或更早的版本不支持 addEventListener() 方法。
技术细节
冒泡: | 支持 |
---|---|
可取消: | 支持 |
事件类型: | Event |
支持的 HTML 标签: | <form> |
DOM 版本: | Level 2 Events |
更多实例
示例代码:
显示在重置之前插入文本字段的文本:
var x = document.getElementById("myInput");
alert("Before reset, the text was: " + x.value);
完整实例:
<!DOCTYPE html>
<html>
<body>
<p>请在文本字段中写一些东西,然后按重置按钮。</p>
<form onreset="myFunction()">
<input type="text" id="myInput">
<input type="reset">
</form>
<script>
function myFunction() {
var x = document.getElementById("myInput");
alert("Before reset, the text was: " + x.value);
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
示例代码:
使用 HTML DOM Form 对象的 reset() 方法重置表单。发生这种情况时,将触发 onreset 事件,这将触发一个 alert 函数。
// 重置 id="myForm" 的表单中所有元素的值
function myResetFunction() {
document.getElementById("myForm").reset();
}
// 重置表单时提示一些文本
function myAlertFunction() {
alert("The form was reset");
}
完整实例:
<!DOCTYPE html>
<html>
<body>
<p>请在下面的字段中输入一些文本,然后按“重置表单”按钮重置表单。</p>
<form id="myForm" onreset="myAlertFunction()">
First name: <input type="text" name="fname">
<input type="button" onclick="myResetFunction()" value="Reset form">
</form>
<p>HTML DOM 表单对象的 reset() 方法重置表单中所有元素的值。发生这种情况时,将触发 onreset 事件,这将触发 alert 函数。</p>
<script>
// 重置 id="myForm" 的表单中元素的文本
function myResetFunction() {
document.getElementById("myForm").reset();
}
// 重置表单时提示一些文本
function myAlertFunction() {
alert("The form was reset");
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html