bootstrap模态数据不是从jQ​​uery传递的

时间:2017-11-30 11:20:45

标签: javascript jquery twitter-bootstrap fullcalendar bootstrap-modal

我正在使用完整日历,所以我有这个模式,插入一个新事件:

saveAndFlush

虽然js是:

 <div id="fullCalModal_add_appointment" class="modal fade">
    <div class="modal-dialog">
        <div class="modal-content">
            <div id="after_post_message_appointment"></div>
            <form id="add_appointment_form" method="post" class="form-horizontal" action="" enctype="multipart/form-data">
                <input type="hidden" name="add_appointment_submit" value="add_appointment_submit">
                <input type="hidden" name="booking_from" value="<?php echo $query1ans;?>">
                <input type="text" name="selected_room" value="" id="selected_room">

现在,问题是所有var数据都没有传递给模态,我无法理解为什么!希望在这里找到一个解决方案,也因为对于其他相同的饭菜类似的代码有效!

1 个答案:

答案 0 :(得分:0)

在设置下面给出的变量数据之前,你应该调用tha modal()函数,

 dayClick: function(date, jsEvent, view, resourceObj) {
              /*  var date_start = moment(date.format()).unix();
                var data1 = moment(date.format()).unix();
                var selected_room = resourceObj.id;*/

              // alert(resourceObj.id);
                //alert('Clicked on: ' + date.format('hh:mm'));
                //alert('Current view: ' + view_type);
                $('#fullCalModal_add_appointment').modal();
                $('#date_start').val(date.format('YYYY-MM-DD'));
                //$('#time_start').val(date.format('hh:mm:ss A'));
                $('#time_start').val(date.format('hh:mm A'));
                //$('#view_type').val(resourceObj.id);
                $('#selected_room').val(resourceObj.id);



            },