test.html 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>設計群匯入工具</title>
  5. <meta charset="utf-8">
  6. <link rel="shortcut icon" href="/Database/assets/images/favicon.ico" />
  7. <meta name="viewport" content="width=device-width, initial-scale=1">
  8. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
  9. <script src="/DataBase/assets/vendor/jquery/jquery.js"></script>
  10. <script src="/DataBase/script/js/bootstrap.js"></script>
  11. <link rel="stylesheet" href="/DataBase/assets/vendor/font-awesome/css/font-awesome.css" />
  12. </html>
  13. <body>
  14. <form id="form" method="post" action="./test.php">
  15. <input type="text" name="id" id="id" />
  16. <input type="submit" name="submit" id="submit" />
  17. </form>
  18. <script>/*
  19. $.ajax({
  20. url: "./test.php",
  21. data: {id: 1},
  22. async: false,
  23. //contentType: "application/json",
  24. dataType: "json",
  25. type: "POST",
  26. })
  27. .success(function(response) {
  28. console.log(response);
  29. })
  30. .error(function(error) {
  31. console.log(error);
  32. })
  33. .complete(function() {
  34. });*/
  35. </script>
  36. </body>