onreset 事件在表单被重置后触发。
<element onreset="script">
参数 | 描述 |
script | onreset 发生时运行的脚本。 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>鱼C-零基础入门学习Web(Html5+Css3)</title>
</head>
<body>
<p>当表单被重置后,触发函数并弹出提示信息。</p>
<form onreset="myFunction()">
输入鱼油的名字: <input type="text">
<input type="reset">
</form>
<script>
function myFunction() {
alert("表单已重置");
}
</script>
</body>
</html>
当表单被重置后,触发函数并弹出提示信息。