亚洲精品一二三区久久伦理中文,免费视频黄,国产伦精品一区二区三区88av,亚洲乱码一区,日韩av黄,国产精品18久久久久白浆,国产99免费

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

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