07-HTML-内嵌标签

<html>
 <head>
  <title>内嵌标签学习</title>
  <meta charset="utf-8"/>
 </head>
 <body>
  <h3>内嵌标签学习</h3>
  <hr />
  <!--
   内嵌标签:
    iframe
     src:要显示的网页资源路径
      能够是本地(相对路径)也能够是网络资源(URL)
      注意:
       默认当前页面打开及加载src指向的资源
     width:设置显示区域的宽度
     height:显示区域的高度
     name:设置内嵌区域的名字,结合超连接标签的target属性使用。
   做用:
    在当前网页中加载其余网页的资源,达到不一样网页资源之间互不干扰,并能在同一个页面中展现给用户的目的。
  -->
  <a href="http://www.jd.com" target="_if">京东年货节</a>
  <a href="http://www.taobao.com" target="_tt">淘宝购物</a><br />
  <iframe src="" width="49%" height="400px" name="_if"></iframe>
  <iframe src="" width="49%" height="400px" name="_tt"></iframe>
 </body>
</html>html

相关文章
相关标签/搜索