$.post()函数的语法
jQuery中 $.post()函数的功能单一,专门用来发起post请求,从而向服务器提交数据。
函数语法如下:
$.post(url,[data],[callback])
各自代表的含义
提交数据:
示例代码
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <script src="/lib/jquery-3.6.0.js"></script> </head> <body> <button id="btnPOST">发起POST请求</button> </body> <script> $(function () { $('#btnPOST').on('click', function () { $.post('http://www.liulongbin.top:3006/api/addbook', { bookname: '水浒传', author: '施耐庵', publisher: '天津图书出版社' }, function (res) { console.log(res); }) }) }) </script> </html>