Ajax之get发起不带参数的请求
作者:互联网
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> <script src="./lib/jquery.js"></script> </head> <body> <button id="btnGET">发起不带参数的GET请求</button> <script> $(function () { $('#btnGET').on('click', function () { $.get('http://www.liulongbin.top:3006/api/getbooks', function (res) { console.log(res) }) }) }) </script> </body> </html>
标签:function,不带,请求,get,res,Ajax,参数 来源: https://www.cnblogs.com/dxboot/p/16300918.html