从twitter bootstrap模式中加载php页面

时间:2014-08-22 15:57:09

标签: php css twitter-bootstrap

我有这个模态

    <!-- Modal -->
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
  <div class="modal-dialog">
    <div class="modal-content">
      <div class="modal-header">
        <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">&times;</span><span class="sr-only">Close</span></button>
        <h4 class="modal-title" id="myModalLabel">Choose Recipients from Address book </h4>
      </div>
      <div class="modal-body">
        <?php echo $output; ?>
      </div>
      <div class="modal-footer">
        <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
        <button type="button" class="btn btn-primary">Save changes</button>
      </div>
    </div>
  </div>
</div>

我用来列出所有博客帖子评论。评论显示正常,但我现在想查看个别评论,点击评论1,点击该特定评论的链接,并从模式加载该评论。

在尝试加载该评论时,模态会立即关闭,因此无法在模态中查看评论。

是否有解决方案可以让我从模态中加载另一个PHP脚本?。

1 个答案:

答案 0 :(得分:0)

如果你想避免使用AJAX,最好的方法是将你的PHP放在一个单独的文件中并通过框架显示它。

另一个选择是将jQuery集成到PHP中,以便在单击链接时显示内容更改。这是我的意思的基本概念:

$(document).ready(function() {
 var e = $('#testModal').find('.modal-body');
 var f = '<a class="comment">Link 1</a>';
 e.html(f);
 $('.comment').click(function() {
  $(this).parent().html('This is your comment.<br /><br /><a class="return">Return</a>');
 });
 $(e).on('click', '.return', function() {
  e = $(this).parent().html(f);
 });
});

可以看到工作地点:http://jsfiddle.net/Lc0vm9o7/

这是一个非常基本的例子。您可以利用PHP生成所需数量的变量,通过jQuery生成来减轻客户端浏览器的负担。

我建议在框架中使用PHP。如果没有在整个PHP中抛出jQuery,那将会更加麻烦。