当前位置:编程学习 > C#/ASP.NET >>

fullCalendar数据绑定问题


您不能对您自己的帖子投票
0
<script type='text/javascript'>

    $(document).ready(function () {

        $('#calendar').fullCalendar
        ({
            editable: true,
            events: function (start,callback) {
                $.ajax({
                    url: "../../Do/DoCalendar.aspx",
                    type: "GET",
                    // dataType: "json",
                    success: function (data) {  
                
                     callback(data);

                    }
                });


            }

        });

    });
</script>
alert(data)是有值的,但是页面上显示不出来,急等各位大师帮忙解答
补充:.NET技术 ,  ASP.NET
CopyRight © 2012 站长网 编程知识问答 www.zzzyk.com All Rights Reserved
部份技术文章来自网络,