当前位置:   article > 正文

一个简单的登录,POST表单提交时报错,403 bad or missing token!_bad or missing security token

bad or missing security token
  1. <form id="formInput" action="check.jhtml" method="POST">
  2. <div class="main" style="margin-top:100px;">
  3. <label class="errorLabel" style="color: red;padding-left:14.5%; padding-top:20px">[#if error != null]${error}[/#if]</label>
  4. <div class="container">
  5. <div class="form-group">
  6. <input type="text" placeholder="输入用户名" id="username" name="username" maxlength="20">
  7. <label for="username" id="errorName" class="errorLabel" style="color: red;"></label>
  8. </div>
  9. <div class="form-group">
  10. <input type="password" placeholder="输入密码" id="password" name="password" maxlength="11">
  11. <label for="password" id="errorPsw" class="errorLabel" style="color: red;"></label>
  12. </div>
  13. <div class="submit-group">
  14. <button id="btnSumbit">登录</button>
  15. </div>
  16. </div>
  17. </div>
  18. </div>
  19. </form>
  20. <script type="text/javascript">
  21. var $username = $("#username");
  22. var $password = $("#password");
  23. var $errorName = $("#errorName");
  24. var $errorPsw = $("#errorPsw");
  25. //提交时,验证用户密码是否正确
  26. $("#formInput").submit(function(){
  27. if($username.val() == ""){
  28. $errorName.text("登录名不能为空!");
  29. return false;
  30. }if($password.val() == ""){
  31. $errorPsw.text("密码不能为空!");
  32. return false;
  33. }
  34. return true;
  35. });
  36. </script>


经过不断排查,发现并不是网上说的加上<meta http-equiv="content-type" content="text/html; charset=utf-8" />就可以了,

而是页面中少引用了两个js文件:

<script type="text/javascript" src="/js/jquery-1.9.1.js"></script>
<script type="text/javascript" src="/js/common.js"></script>

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/464142
推荐阅读
相关标签
  

闽ICP备14008679号