AV综合亚洲欧美,菠萝蜜视频在线观看,天堂av性爱在线,婷婷五月开心色婷在线

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