码迷,mamicode.com
首页 > Web开发 > 详细

html(jsp)如何实现对form提交前进行确认

时间:2014-12-09 19:52:23      阅读:239      评论:0      收藏:0      [点我收藏+]

标签:form提交前进行确认

<html>
 <head>
  <title>Validator</title>
  <script type="text/javascript">
   function checkForm() {
    if (window.confirm("Are you sure you want to sumbit this form?")) {
     return true;
    }
    return false;
   }
  </script>
 </head>
 <body>
  <form action="2.html" onsubmit="return checkForm()">
   Please click the submit button:<br>
   <input type="text" name="text" value="text"><br>
   <input type="submit">
  </form>
 </body>
</html>

bubuko.com,布布扣

html(jsp)如何实现对form提交前进行确认

标签:form提交前进行确认

原文地址:http://jlins.blog.51cto.com/4487484/1588026

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!