码迷,mamicode.com
首页 > Web开发 > 详细

jquery ajax post 多选框值到MVC Model binder

时间:2014-09-25 14:31:29      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   os   java   ar   div   

 Javascript

        var values = $(‘#datatable input.gid:checked‘).map(function () {
          return $(this).attr(‘gid‘);
        }).get();

        $.ajax({
           type: "POST",
           url: ‘/trade/audit/goodspass?t=‘ + new Date().getTime(),
           data: { ids: values },
           traditional: true,
           success: function(msg){
             alert(msg);
           }
        });    

 C#

        [HttpPost]
        public ActionResult GoodsPass(ICollection<long> ids)
        {
            if(null == ids || ids.Count < 1)
                return Content("请选择一项");

             return Content("0");
        }

 

jquery ajax post 多选框值到MVC Model binder

标签:style   blog   http   color   io   os   java   ar   div   

原文地址:http://www.cnblogs.com/eyu/p/ajax_post_multiple_check_value_2_mvc_model_binder.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!