Result Size: 625 x 534
x
 
<!DOCTYPE html>
<html>
<body>
<p>当您重置表单时,将触发一个功能来提醒一些文本。</p>
<form onreset="myFunction()">
  Enter name: <input type="text">
  <input type="reset">
</form>
<script>
function myFunction() {
  alert("表格已重置");
}
</script>
</body>
</html>