iframe除了可以用src 显示外部网页也可以显示自定义网页。
定义iframe标签时name 属性为标识,通过连接 的target 属性将页面在iframe中显示。
<iframe name="mainView" width="100%" height="700px" frameborder="0px"></iframe>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<table width="100%" height="700px" >
<tr>
<buttton></buttton>
<td width="200px" style="border-right:blue 2px solid ">
<li><a href="bookadd.html" target="mainView">添加图书</a></li>
<li><a href="bookfile.html" target="mainView">添加图书图片</a></li>
</td>
<td>
<iframe name="mainView" width="100%" height="700px" frameborder="0px"></iframe>
</td>
</tr>
</table>
</body>
</html>
|