jquery ajax 怎样向后台传递数组

2024-11-27 17:58:05
推荐回答(1个)
回答1:

就是这样吧,
$.ajax({
url:"xxxxx.php",
data:{arr:[1,2,3,4]},
success:function(){
}
})