You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

35 lines
652 B

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>test</title>
  6. </head>
  7. <script src = "./js/jquery-2.2.4.min.js"></script>
  8. <script >
  9. alert(1);
  10. $.ajax({
  11. url:'./wechat/WxPay/realpay/login_wechat2.0.php', //请求地址
  12. type: "post", //请求方式
  13. data:{
  14. type:"distribut_OrderList",
  15. },
  16. dataType: "json",
  17. success: function (data) {
  18. alert(3);
  19. },
  20. fail: function (date) {
  21. alert(4);
  22. }
  23. });
  24. alert(2);
  25. </script>
  26. <body>
  27. <form action="/wechat/WxPay/realpay/login_wechat2.0.php" method="post">
  28. <input type="text" name="name">
  29. </form>
  30. </body>
  31. </html>