Ajax传参数是什么格式

2025-03-07 08:46:16
推荐回答(1个)
回答1:

$(function(){
type:"post",
url:"url",
data:"a=a&b=b" //这个就是传参数格式。传到后台去的
success:function(){

}
})