我需要在单击所选事件时获取所选事件的id
的值。对话框打开后,我有一个链接将重定向到另一个页面。我需要将eventid
传递给控制器以将其用于重定向页面。
我似乎无法解决这个问题,已经持续了一个星期。
这是我的脚本:
<script type='text/javascript'>
$(document).ready(function(){
$('#calendar').fullCalendar({
header : {
left: 'prev,next',
center: 'title',
right: 'month,agendaWeek,agendaDay'
},
allDay: false,
events: "<?php echo site_url('home/calendarList') ?>",
eventClick: function(event, jsEvent, view) {
//set the values and open the modal
$("#startTime").html(moment(event.start));
$("#startTime").html(moment(event.start).format('h:mm A'));
$("#endTime").html(moment(event.start).add('hours',1).format('h:mm A'));
$("#eventInfo").html(event.description);
$("#eventIssue").html(event.issue);
$("#eventrefid").html(event.id); //i need to pass the value of this
//to my controller and
//which will be used in another page
//(no ajax needed if possible)
$("#eventID").html(event.issue);
$("#eventLink").attr('href', event.url);
$("#eventContent").dialog({ modal: true, title: event.title });
$(this).css('border-color', 'red');
}
});
});
</script>
这是我的HTML代码:
<section>
<div class="content" id="eventContent" title="Event Details" style="display:none;">
<?= form_open('home/accomplish_appointment');?>
<span style="font-weight: bold;">From:</span> <span id="startTime"></span><br>
<span style="font-weight: bold;">To: <span id="endTime"></span>
<hr>
<span style="font-weight: bold;">Issue: <span id="eventIssue"></span><br>
<span style="font-weight: bold;">Special Instruction: <span id="eventInfo"></span><br><br>
<button class="fr submit small" type="submit" id="eventLink">Accomplish Appointment</button>
<?= form_close();?>
</div>
</section>
尝试使用下面的代码传递事件ID。它提交将事件 ID 发送到 home/accomplish_appointment
的表单:
在 jquery 代码中添加以下内容以将事件 ID 分配给表单的隐藏输入:
$("#eventID").val($("#eventrefid").html(event.id));
在 HTML 中:
<?= form_open('home/accomplish_appointment');?>
<input type="hidden" id="eventID" name="eventid" />
<span style="font-weight: bold;">From:</span> <span id="startTime"></span><br>
<span style="font-weight: bold;">To: <span id="endTime"></span>
<hr>
<span style="font-weight: bold;">Issue: <span id="eventIssue"></span><br>
<span style="font-weight: bold;">Special Instruction: <span id="eventInfo"></span><br><br>
<button class="fr submit small" type="submit" id="eventLink">Accomplish Appointment</button>
<?= form_close();?>