0

我正在将值传递给这样的 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

4

2 回答 2

1

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

于 2012-08-09T04:59:31.927 回答
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
     }
     });
    
于 2014-08-01T20:10:22.197 回答