国产精品亚洲综合色拍,人人干人人爱,中文字幕专区在线亚洲,清纯唯美激情视频二区

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