05.Ajax请求后台接口.html 474 B

1234567891011121314151617181920
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Document</title>
  8. </head>
  9. <body>
  10. </body>
  11. <script src="https://cdn.bootcdn.net/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
  12. <script>
  13. $.ajax({
  14. url:'http://www.baidu.com'
  15. }).then(function(res){
  16. console.log(res)
  17. })
  18. </script>
  19. </html>