国产欧美日韩中文字幕,日韩一区二区免费看,日韩欧美国产一区二区三区,精品视频一区二区三区免费,国产一区二区三区在线免费,国产日韩在线观看视频,日韩欧美视频一区二区三区

首頁(yè) 服務(wù) 產(chǎn)品 文檔 關(guān)于

ashx接收javascript數組

前端

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”]);