sql >> Database teknologi >  >> RDS >> Mysql

Indlæs dynamisk information til Twitter Bootstrap modal

her er løsningen,

<a href="#" id="1" class="push">click</a> 

brug en div på din modale krop, som denne

    <div class="modal-body">  

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

læg nu data ind i .something med ajax-kalder . Tjek venligst http://api.jquery.com/jQuery.ajax/ at vide mere om 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);
           }
    });


});

   });


  1. Overvågning af dine databaser med MySQL Enterprise Monitor

  2. PHP PDO Forberedt sætning bind NULL værdi

  3. Brug MySQL relationsdatabaser på Debian 5 (Lenny)

  4. 2 måder at liste alle triggere i en PostgreSQL-database