|
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>test</title>
- </head>
- <script src = "./js/jquery-2.2.4.min.js"></script>
- <script >
- alert(1);
- $.ajax({
- url:'./wechat/WxPay/realpay/login_wechat2.0.php', //请求地址
- type: "post", //请求方式
- data:{
- type:"distribut_OrderList",
- },
-
- dataType: "json",
- success: function (data) {
- alert(3);
- },
- fail: function (date) {
- alert(4);
- }
- });
- alert(2);
-
- </script>
- <body>
- <form action="/wechat/WxPay/realpay/login_wechat2.0.php" method="post">
- <input type="text" name="name">
-
- </form>
-
- </body>
- </html>
|