jQuery完整日历:如何在完成ajax调用后更新日历?

时间:2011-01-24 04:55:42

标签: jquery fullcalendar

eventDrop: function(event, dayDelta, revertAction) {
    $.post("/calendar/",{id: event.id } , 
        function(result) {
            if (result == "succeed"){
                alert('succeed');
            }
            else{
                alert("Server error, Please try again");
            }
         },"json");
}

所以在这个方法中,我有一个ajax调用。我希望只有在从服务器返回成功时才更新日历,否则它什么都不做。这种代码是如何编写的?

2 个答案:

答案 0 :(得分:2)

答案 1 :(得分:0)

$.post("/calendar/", {id: event.id }, 
    function (data, textStatus, XMLHttpRequest) {
        // use data if textStatus == 200
    },
    "json"
);

??请参阅jQuery.post()文档