html之iframe

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>


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章