Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

Carregar informações dinamicamente para o modal Twitter Bootstrap


aqui está a solução,
<a href="#" id="1" class="push">click</a> 

use um div no seu corpo modal, assim
    <div class="modal-body">  

             <div class="something" style="display:none;">
                    // here you can show your output dynamically 
             </div>
    </div>

agora coloque dados em .something com ajax chamando. Por favor, verifique http://api.jquery.com/jQuery.ajax/ para saber mais sobre jquery ajax.
   $(function(){

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

       $.ajax({
          type : 'post',
           url : 'your_url.php', // in here you should put your query 
          data :  'post_id='+ essay_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 
              $('#mymodal').show();  // put your modal id 
             $('.something').show().html(r);
           }
    });


});

   });