我想加載模態上特定帖子的評論。爲此,我需要將帖子ID傳遞給模態,然後獲取相應的註釋。 該模式是由觸發如下:要將動態數據傳遞到引導模式
<a class="xyz" data-toggle="modal" data-target="#compose-modal" data-id="<?php echo $list[$i]->getID(); ?>">View Comments</a>
和模態在頁面的底部定義如下:在頁面返回給瀏覽器之前執行
<div class="modal fade" id="compose-modal" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<!-- here i need to use php to fetch the comments using post id -->
</div>
</div>
</div>
您是否嘗試過實現該目標? – jcvegan 2014-09-18 15:38:02
[將數據傳遞給引導模式]可能的重複(http://stackoverflow.com/questions/10626885/passing-data-to-a-bootstrap-modal) – jcvegan 2014-09-18 15:39:22
是的,我嘗試了很多選擇。使用以下內容:$('a [data-toggle = modal],button [data-toggle = modal]')。click(function(){ var data_id =''; if(typeof $ 。數據( '身份證')== '不確定'){ data_id = $(本)。數據( 'ID');} ! $( '#my_element_id')VAL(data_id); }) });我將模態中的輸入字段的值設置爲帖子ID。但我不能訪問在PHP形式的價值來獲取評論 – 2014-09-18 15:40:17