1. Ajax请求
浏览器向网站发送请求时:URL 和 表单的形式提交。
- GET
- POST
特点:页面刷新。
除此之外,也可以基于Ajax向后台发送请求(偷偷的发送请求)。
- 依赖jQuery
- 编写ajax代码
$.ajax({
url:"发送的地址",
type:"get",
data:{
n1:123,
n2:456
},
success:function(res){
console.log(res);
}
})
服务器托管,北京服务器托管,服务器租用 http://www.fwqtg.net
相关推荐: 代码随想录算法训练营29期|day 23 任务以及具体安排
669.修剪二叉搜索树 class Solution { public TreeNode trimBST(TreeNode root, int low, int high) { if (root == null) { return null; } if (ro…