$(".a_post").on("click",function(event){
event.preventDefault();//使a自带的方法失效,即无法调整到href中的URL(https://www.cnblogs.com/)
$.ajax({
type: "POST",
url: "url地址",
contentType:"application/json",
data: JSON.stringify({param1:param1,param2:param2}),//参数列表
dataType:"json",
success: function(result){
//请求正确之后的操作
},
error: function(result){
//请求失败之后的操作
}
});
});
到此这篇关于html post请求之a标签的两种用法解析的文章就介绍到这了,更多相关html post请求 a标签内容请搜索脚本之家以前的文章或继续浏览下面的相关文章,希望大家以后多多支持脚本之家!