正在使用bootstrap和codeigniter以及...... 如何使页脚和页眉静止,只改变内容?
HEADER
<div id="content">
</div>
FOOTER
这是这个
http://i.imgur.com/bXs5IRQ.png
答案 0 :(得分:1)
创建header.php
并放入/application/views
<!DOCTYPE html>
<html lang="en">
<head>
......
do you header stuffs here
创建footer.php
并放入/application/views
<div class="footer">
....
footer stuff here
</div>
</body>
<html>
现在,在您的每个视图文件中,您都可以添加header
和footer
个文件
<?php $this->load->view('header'); ?>
<div id="content">
... rest of the dynamic stuffs
</div>
<?php $this->load->view('footer'); ?>
答案 1 :(得分:0)
ci有自己的模板,您可以在基本控制器中使用它或编写自己的输出方法。我认为bootstrap是一个CSS和JS库。因此,如果您想使用样式,可以包含引导程序,但如果要格式化输出,则应阅读ci_user_guide。