简单教程
提交运行
代码编辑器:
<p>当表单被重置后,触发函数并弹出提示信息</p> <form onreset="myFunction()"> 输入您的名字: <input type="text"> <input type="reset"> </form> <script> function myFunction() { alert("表单已重置"); } </script>
运行结果: