time

public ActionResult GetAllList()         {

            var list = db.Movies.ToList();

            return Json(list, JsonRequestBehavior.AllowGet);             //return Content(a);

        }

 

@section Scripts{
    <script type="text/javascript">
        function formatNumToDate(value) {
          var now = eval(value.replace(/\/Date\((\d+)\)\//gi, "new Date($1)"));///.../gi是用来标记正则开始和结束;\是转义符;()标注了正则匹配分组1,$1
          var year = now.getYear() + 1900;
          var month = now.getMonth() + 1;
          var date = now.getDate();
          var hour = now.getHours();
           var minute = now.getMinutes();
           var second = now.getSeconds();
           return year + "-" + compareNine(month) + "-" + compareNine(date) + " " + compareNine(hour) + ":" + compareNine(minute) + ":" + compareNine(second);
       }

        $(document).ready(function () {
            function ChangeDateFormat(time) {
                if (time != null) {
                    var date = new Date(parseInt(time.replace("/Date(", "").replace(")/", ""), 10));
                    var month = date.getMonth() + 1 < 10 ? "0" + (date.getMonth() + 1) : date.getMonth() + 1;
                    var currentDate = date.getDate() < 10 ? "0" + date.getDate() : date.getDate();
                    return date.getFullYear() + "-" + month + "-" + currentDate;
                }
                return "";
            }
            $("#TestList").click(function () {

                $.getJSON("/Movies/GetAllList", {}, function (result) {
                    
                    alert(result);
                    $.each(result, function (i, field) {
                        //var datetime = field.ReleaseDate.formatNumToDate();
                        
                        alert(i + " " + ChangeDateFormat(field.ReleaseDate));

                    });







                });
            });


        });
     </script>
    }

 

posted @ 2014-05-09 00:46  MrMrCash  阅读(212)  评论(0编辑  收藏  举报