首页 > 其他分享 >ajax post json

ajax post json

时间:2022-11-03 11:13:16浏览次数:36  
标签:city res json county ajax post

var list = {
	"province" : province,
	"city" : city,
	"county" : county
}
$.ajax({
	url : "postOption",
	type : "post",
	contentType : "application/json",
	dataType : "json",
	data : JSON.stringify(list),
	success : function(res){
		console.log(res);
	}
})

标签:city,res,json,county,ajax,post
From: https://www.cnblogs.com/lwx11111/p/16853780.html

相关文章