JavaScript 参考手册
onreset 事件
在表单重置前显示写入到文本域中的内容
源代码:
点击运行 »
<p>想文本域中输入信息并点击重置按钮。</p> <form onreset="myFunction()"> <input type="text" id="myInput"> <input type="reset"> </form> <script> function myFunction() { var x = document.getElementById("myInput"); alert("重置前,文本信息为: " + x.value); } </script>
运行结果:
点击运行 »