精品国产乱,99精品在线免费,亚洲欧洲三级,91亚洲国产亚洲国产,日韩欧美精品久久,久久精品免费在线观看,精品国产一区二区三区久久久久久

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