Blogger Information
Blog 11
fans 0
comment 0
visits 7584
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
320内联框架学习及在线商城实战初步-2018年3月29日15时20分-补作业
huang2018的博客
Original
685 people have browsed it

1、用内联框架初步开发在线商城管理系统。核心:把<iframe name="框架页面名称">与<a href="" target="框架页面名称">结合使用在框架中打开指定页面。

实例

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>商城后台管理系统</title>
</head>
<body>
	<table border="0" cellpadding="5" cellspacing="0" align="center" width="960px">
		<!-- 头部 -->
		<tr>
			<td colspan="2">
				<iframe src="inc/top.html" name="top" height="70" width="100%" frameborder="0" scrolling="no"></iframe>
			</td>
		</tr>
		<tr><td colspan="2" width="100%"><hr></td></tr>
		<!-- 主内容区 -->
		<tr>
			<!-- 左侧 -->
			<td>
				<iframe src="inc/left.html" name="left" height="600px" width="140px" frameborder="0" scrolling="no" align="center" ></iframe>
			</td>
			<!-- 右侧内容区 -->
			<td>
				<iframe src="inc/default.html" name="right" height="600px" width="800px" frameborder="0" scrolling="no" align="left" ></iframe>
			</td>
		</tr>
		<tr><td colspan="2" width="100%"><hr></td></tr>
		<!-- 底部 -->
		<tr>
			<td colspan="2">
				<iframe src="inc/footer.html" name="footer" height="70" width="100%" frameborder="0" scrolling="no"></iframe>
			</td>
		</tr>
	</table>
</body>
</html>
运行实例 »

点击 "运行实例" 按钮查看在线实例

2、运行结果:

1522312285541759.jpg1522312312866936.jpg1522312334858030.jpg1522312354770485.jpg

Correction status:Uncorrected

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post