簡體   English   中英

PHP jQuery將數據加載到引導模態框

[英]PHP jQuery load data into bootstrap modal box

我需要將動態數據加載到引導模式框中。

JS:

$(function() {

    $('.push').click(function() {
        var id = $(this).attr('id');

        $.ajax({
            type: 'post',
            url: '../controller/booksdetails.php', // in here you should put your query 
            data: 'cmid=' + id, // here you pass your id via ajax .
            // in php you should use $_POST['post_id'] to get this value 
            success: function(r) {
                // now you can show output in your modal 
                $('#cm').modal({
                        backdrop: 'static',
                        keyboard: false
                    }) // put your modal id 
                $('.something').show().html(r);
            }
        });


    });

});

PHP文件:

if(isset($_POST['cmid'])){
$DB =  mysqli::f("SELECT * FROM " . BOOKS . " WHERE id = ?",filter_var($_POST['cmid'], FILTER_VALIDATE_INT));
print_r($DB);
}

並使用class="something"數據打印到modalbox div 此方法真正有效並打印所有php數組結果。

現在我需要用PHP陣列aftar負載數據工作納入modalbox(與PHP類,安全的數據,....工作)。 我的意思是: 負載 PHP數據到modalbox(即: json不打印結果到modalbox。

我該如何生成呢?

大家好,這里有個例子: http : //jsfiddle.net/leojavier/kwh2n00v/1/

<!-- Button trigger modal -->
<button type="button" class="btn btn-primary btn-lg" id="insert">
  insert data
</button>

<!-- Modal -->
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
  <div class="modal-dialog" role="document">
    <div class="modal-content">
      <div class="modal-header">
        <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
        <h4 class="modal-title" id="myModalLabel">Modal title</h4>
      </div>
      <div class="modal-body">
        ...
      </div>
      <div class="modal-footer">
        <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
        <button type="button" class="btn btn-primary">Save changes</button>
      </div>
    </div>
  </div>
</div>

JS

$('#insert').on('click', function (){
    // This should be on your AJAX Success
    var data="some dynamic data";
    $('.modal-body').html(data);
    $('#myModal').modal('show');
    //--------------------------------------
})

希望對您有所幫助... http://jsfiddle.net/leojavier/kwh2n00v/1/

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM