//定义数组
 var _arrays = [];
   for (var i = 0; i < 10; i++) {
            _arrays.push(i);
        }

//post
 $.post(href, {list: _arrays} );

 

//get post datas
var shangpins = Request.Params.GetValues("list[]");

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-08-01
  • 2022-12-23
  • 2021-12-26
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-11-24
  • 2021-08-15
  • 2022-12-23
  • 2022-12-23
  • 2021-12-09
相关资源
相似解决方案