亚洲综合婷婷,欧美电影一区二区三区,日本一区二区三区在线看,精品成人免费一区二区在线播放,日本高清二区,丁字裤翘臀美女,99热热99

首頁 服務 產品 文檔 關于

ashx接收javascript數(shù)組

前端

var arr = [];

dataQty.push(1);

dataQty.push(2);


$.ajax({
? ? ? ? ? ? url: ashx地址,
? ? ? ? ? ? data: {arr:JSON.stringify(arr)},
? ? ? ? ? ? type: 'post',
? ? ? ? ? ? dataType: 'json',
? ? ? ? ? ? success: function(data){
? ? ? ? ? ? }
? ? ? ? });
后端

using System.Web.Script.Serialization;

int[] arr = new JavaScriptSerializer().Deserialize(HttpContext.Current.Request.QueryString[“arr”]);