如何将传递给bootstrap模态对话框的值赋给php变量?

时间:2012-08-09 04:28:54

标签: php twitter-bootstrap

我正在将值传递给像这样的bootstarp模态形式 -

echo '<a data-toggle="modal" data-id="ISBN564541" data-toggle="modal" title="Add this item" class="open-AddBookDialog" href="#addBookDialog">';

javascript:

<script>
 $(document).on("click", ".open-AddBookDialog", function () {
 var myBookId = $(this).data('id');
 $(".modal-body #bookId").val( myBookId );
 $('#addBookDialog').modal('show');
});
</script>

在这样的文本区域接收它 -

echo '<textarea name="bookId" id="bookId"></textarea>';

现在我的问题是如何将这个值变成一个php变量说$receivedValue

2 个答案:

答案 0 :(得分:1)

您必须使用AJAX请求或普通表单提交将其发布到PHP脚本。

答案 1 :(得分:0)

我能想到的唯一方法是使用post或get方法抛出'$ .ajax'方法。 以下是您需要的代码:

.ajax({
    url : "URL of the php script", 
    type: "POST",
    data : //The data that you want to pass
    success: function(res)
    {
         //code if everything passed fine
     }
     });