伊人福利网,一级做a爰,大香交伊人,亚洲国产午夜精品理论片的软件,精品极品三级久久久久,国产亚洲人成网站在线观看,另类视频在线观看

首頁(yè) 服務(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”]);