ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
$.get()、$.post()方法概述 作用: $.get方法用于 发送get请求, $.post方法用于发送post请求。 ~~~ $ .get('http:/ /www. example .com',{name: ' zhangsan',age: 30}, function (response) {}) $ .post ('http: //www. example.com', {name: 'lisi', age: 22} ,function (response) {}) ~~~