html文件里引入文件html文件

导入通用的代码除了使用php外 iframe在很多界面使用起来比较方便

比如说要写导航 在好几个界面都要用这个导航 可以用iframe引用

实例:这个header.html是我写的一个导航界面

在index.html里:

<div class="iframe">

<iframe src="header.html" width="100%" height="442px" marginwidth="0" frameborder="no" scrolling="no"></iframe>

</div>

2 简单介绍一下利用php引入

eg:

<?php  include("header.php"); //导入导航栏  ?>

在header.php文件里正常使用html文件的编写即可

下面给出一个demo

header.php

<html>

<head>

<meta charset="UTF-8">

<title></title>

<style type="text/css">

*{text-align: center;}

a{color: red;}

a:hover{color: green;}

</style>

</head>

<body>

<h2>商品信息管理</h2>

<a href="index.php">浏览商品</a> |

<a href="add.php">添加商品</a>

<hr width="80%" />

</body>

</html>

3 、<object>方式

<object style="border:0px" type="text/x-scriptlet" data="import.htm" width=100% height=30></object>

转载请注明出处 谢谢合作*_*http://www.cnblogs.com/simba-lkj/p/6031662.html

上一篇:彻底理解position与anchorPoint - Wonderffee's Blog(转)


下一篇:Atitit.android播放smb 网络邻居视频文件解决方案