sql >> データベース >  >> RDS >> Mysql

情報を動的にTwitterBootstrapモーダルにロードします

    これが解決策です、

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

    このように、モーダルボディにdivを使用します

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

    次に、データを.somethingに配置します ajaxを呼び出します。 http://api.jquery.com/jQuery.ajax/ jqueryajaxについて詳しく知るため。

       $(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. mysqlクエリ-出力の日付をフォーマットしますか?

    2. Postgresがインデックスを使用しないのはなぜですか?

    3. 以前の選択に基づいてドロップダウンにデータを入力

    4. Postgresの列名またはテーブル名に引用符が必要なのはいつですか。