Iframe的使用
有时我们需要在一个含有<body>的页面嵌入另一个界面 形成画中画的效果
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="Generator" content="EditPlus">
<meta name="Author" content="">
<meta name="Keywords" content="">
<meta name="Description" content="">
<title>Document</title>
</head>
<body>
<html>
<body>
<h1>hello,world</h1>
<a href="http://www.taobao.com" target="iframe1" >连接到taobao</A><br/>
<a href="demo10.html" target="iframe1" >demo10.html</A><br/>
<iframe name="iframe1" src="http://www.baidu.com" width="500px" height="400px" />
<iframe src="http://g.cn" width="400px" height="400px" />
</body>
</html>
</body>
</html>
时间: 2024-10-14 03:47:46