动态使用包括php到特定的div

时间:2016-04-18 20:13:42

标签: javascript php html

我有一个可以使用包含的网页(我没有构建它但我现在正在处理它),事实是我必须添加的管理页面默认包含我要插入图片中的某个gif,这就是重要的整个div,我想知道是否有办法包含我制作的新内容并将其包含在同一个div中,所以我不需要重新加载整个页面。

包含默认的代码段包括未注释的代码和我要添加的代码是评论的

  <div id="content-wrapper">
<div class="row" style="opacity: 1;">
<div  class="col-lg-12">

       <div  id="container" class="container" width="100wv" height="100wv">

<?php 
      include 'solicitudlst.phi';
       //include 'pruebaPHP.php';


?>
<script>



</script>

<div class="row">
<div class="col-lg-12">
&nbsp;
</div>
</div>


<?php 
      include 'footer.phi';
?>

      </div>

         </div>
         </div>
         </div>

评论的include是我要添加的新的,另一个是默认的。

The blue circle shows the href which is selected by default and contains the content that shows on the right, and the red circle shows the href I wanna click and and change the content on the right by dynamically include the new php

1 个答案:

答案 0 :(得分:0)

<?php 
      include ("yourfile.php");
?>

那应该有用。我不确定.phi文件是什么。