This is my handler:
这是我的经纪人:
$("div.fc-content").on('click', function (e) {
var id = $(this).data('id');
$.ajax({
url: '/VacationRequest/Edit/' + id,
cache: false
}).done(function (data) {
$("#edit-id").val(data.Id);
$("#startDate-edit").val(data.startDate);
$("#endDate-edit").val(data.endDate);
$("#comment-edit").val(data.comment);
$("#vacationTypes-edit").val(data.vacationType);
$('#edit-vacation-modal-window').modal('show');
});
});
$("div.fc-cont