$ .post不发送变量

时间:2018-04-27 21:41:22

标签: javascript php jquery ajax

我一直在使用“Bootstrap Selectpicker插件”,但为了提升它,我需要事件的ID(在日历中),当我按下它时。该变量仅存在于Javascript中,但我需要它在PHP ..

我尝试过这样的事情:

eventRender: function(event, element) {
  element.bind('dblclick', function() {
    $('#ModalEdit #id').val(event.id);
    $.post("calender/variabler.php", {eventid: event.id});
    $('#ModalEdit #title').val(event.title);
    $('#ModalEdit #color').val(event.color);
    $('#ModalEdit').modal('show');
  });
},

但它不起作用。你可以在这里看到我的Javascript编码:https://pastebin.com/crqPXvtH这是我的“variabler.php”:

<?php
$eventidcalender = $_POST['eventid'];
?>

0 个答案:

没有答案