运行 ❯
获取您的
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
转到空间
<!DOCTYPE html> <html> <body> <p>Write something in the text field and press the Reset button.</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>