यहाँ समाधान है,
<a href="#" id="1" class="push">click</a>
अपने मोडल बॉडी पर इस तरह एक डिव का उपयोग करें
<div class="modal-body">
<div class="something" style="display:none;">
// here you can show your output dynamically
</div>
</div>
अब डेटा को .something
. में डालें अजाक्स कॉलिंग के साथ। कृपया चेक करें http://api.jquery.com/jQuery.ajax/
ए> 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);
}
});
});
});