麻豆小视频在线观看_中文黄色一级片_久久久成人精品_成片免费观看视频大全_午夜精品久久久久久久99热浪潮_成人一区二区三区四区

首頁 > 開發 > HTML5 > 正文

HTML5的結構和語義(2):結構

2024-09-05 07:11:26
字體:
來源:轉載
供稿:網友

  由于缺少結構,即使是形式良好的 html 頁面也比較難以處理。必須分析標題的級別,才能看出各個部分的劃分方式。邊欄、頁腳、頁眉、導航條、主內容區和各篇文章都由通用的 div 元素來表示。html 5 添加了一些新元素,專門用來標識這些常見的結構:

 · section:這可以是書中的一章或一節,實際上可以是在 html 4 中有自己的標題的任何東西
 · header:頁面上顯示的頁眉;與 head 元素不一樣
 · footer:頁腳;可以顯示電子郵件中的簽名
 · nav:指向其他頁面的一組鏈接
 · article:blog、雜志、文章匯編等中的一篇文章

  我們來考慮一個典型的 blog 主頁,它的頂部有頁眉,底部有頁腳,還有幾篇文章、一個導航區和一個邊欄,見代碼1 典型的 blog 頁面

<html>
  <head>
    <title>mokka mit schlag </title>
 </head>
<body>
<div id="page">
  <div id="header">
    <h1><a href="http://www.elharo.com/blog">mokka mit schlag</a></h1>
  </div>
  <div id="container">
    <div id="center" class="column">              
      <div class="post" id="post-1000572">
        <h2><a href=
      "/blog/birding/2007/04/23/spring-comes-and-goes-in-sussex-county/">
      spring comes (and goes) in sussex county</a></h2>
        <div class="entry">
          <p>yesterday i joined the brooklyn bird club for our
          annual trip to western new jersey, specifically hyper
          humus, a relatively recently discovered hot spot. it
          started out as a nice winter morning when we arrived
          at the site at 7:30 a.m., progressed to spring around
          10:00 a.m., and reached early summer by 10:15. </p>
        </div>
      </div>
      <div class="post" id="post-1000571">
        <h2><a href=
          "/blog/birding/2007/04/23/but-does-it-count-for-your-life-list/">
           but does it count for your life list?</a></h2>
        <div class="entry">
          <p>seems you can now go <a
          href="http://www.wired.com/science/discoveries/news/
          2007/04/cone_sf">bird watching via the internet</a>. i
          haven't been able to test it out yet (20 user
          limit apparently) but this is certainly cool.
          personally, i can't imagine it replacing
          actually being out in the field by any small amount.
          on the other hand, i've always found it quite
          sad to meet senior birders who are no longer able to
          hold binoculars steady or get to the park. i can
          imagine this might be of some interest to them. at
          least one elderly birder did a big year on tv, after
          he could no longer get out so much. this certainly
          tops that.</p>
        </div>
      </div>
      </div>
    <div class="navigation">
      <div class="alignleft">
         <a href="/blog/page/2/">« _fcksavedurl=""/blog/page/2/">«" previous entries</a>
       </div>
      <div class="alignright"></div>
    </div>
  </div>
  <div id="right" class="column">
    <ul id="sidebar">
      <li><h2>info</h2>
      <ul>
        <li><a href="/blog/comment-policy/">comment policy</a></li>
        <li><a href="/blog/todo-list/">todo list</a></li>
      </ul></li>
      <li><h2>archives</h2>
        <ul>
          <li><a href='/blog/2007/04/'>april 2007</a></li>
          <li><a href='/blog/2007/03/'>march 2007</a></li>
          <li><a href='/blog/2007/02/'>february 2007</a></li>
          <li><a href='/blog/2007/01/'>january 2007</a></li>
        </ul>
      </li>
    </ul>
  </div>
  <div id="footer">
    <p>copyright 2007 elliotte rusty harold</p>
  </div>
</div>
</body>
</html>

  即使有正確的縮進,這些嵌套的 div 仍然讓人覺得非常混亂。在 html 5 中,可以將這些元素替換為語義性的元素,見代碼2 用 html5編寫的典型blog頁面

<html>
 <head>
    <title>mokka mit schlag </title>
 </head>
<body>
  <header>
    <h1><a href="http://www.elharo.com/blog">mokka mit schlag</a></h1>
  </header>
  <section>              
      <article>
        <h2><a href=
        "/blog/birding/2007/04/23/spring-comes-and-goes-in-sussex-county/">
         spring comes (and goes) in sussex county</a></h2>
        <p>yesterday i joined the brooklyn bird club for our
        annual trip to western new jersey, specifically hyper
        humus, a relatively recently discovered hot spot. it
        started out as a nice winter morning when we arrived at
        the site at 7:30 a.m., progressed to spring around 10:00
        a.m., and reached early summer by 10:15. </p>
      </article>
      <article>
        <h2><a href=
          "/blog/birding/2007/04/23/but-does-it-count-for-your-life-list/">
          but does it count for your life list?</a></h2>
          <p>seems you can now go <a
          href="http://www.wired.com/science/discoveries/news/
          2007/04/cone_sf">bird watching via the internet</a>. i
          haven't been able to test it out yet (20 user
          limit apparently) but this is certainly cool.
          personally, i can't imagine it replacing
          actually being out in the field by any small amount.
          on the other hand, i've always found it quite
          sad to meet senior birders who are no longer able to
          hold binoculars steady or get to the park. i can
          imagine this might be of some interest to them. at
          least one elderly birder did a big year on tv, after
          he could no longer get out so much. this certainly
          tops that.</p>
      </article>   
    <nav>
      <a href="/blog/page/2/">« _fcksavedurl=""/blog/page/2/">«" previous entries</a>
    </nav>
  </section>
  <nav>
    <ul>
      <li><h2>info</h2>
      <ul>
        <li><a href="/blog/comment-policy/">comment policy</a></li>
        <li><a href="/blog/todo-list/">todo list</a></li>
      </ul></li>
      <li><h2>archives</h2>
        <ul>
          <li><a href='/blog/2007/04/'>april 2007</a></li>
          <li><a href='/blog/2007/03/'>march 2007</a></li>
          <li><a href='/blog/2007/02/'>february 2007</a></li>
          <li><a href='/blog/2007/01/'>january 2007</a></li>
        </ul>
      </li>
    </ul>
  </nav>
  <footer>
    <p>copyright 2007 elliotte rusty harold</p>
  </footer>
</body>
</html>

  現在不再需要 div 了。不再需要自己設置 class 屬性,從標準的元素名就可以推斷出各個部分的意義。這對于音頻瀏覽器、手機瀏覽器和其他非標準瀏覽器尤其重要。
  
  (待續)

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 日本精品久久久久久草草 | 91成人免费在线观看 | 亚洲免费观看视频 | 免费一级毛片在线播放视频 | 牛牛碰在线 | 精品一区二区三区在线观看国产 | 黄色一级片在线免费观看 | av免播放| 精品国产91久久久久久 | 国产成人精品免高潮在线观看 | 黄在线免费看 | 国产91久久久久久 | 精国产品一区二区三区 | 一级做a爱片毛片免费 | 日韩视频在线免费 | 黄色网址免费在线 | 亚洲精品无码不卡在线播放he | 亚洲第一综合 | 毛片一区二区三区 | 99精品热视频 | 国产精品久久久久久婷婷天堂 | 久久久久久久久久久国产精品 | 日日摸夜夜骑 | 免费看性xxx高清视频自由 | 精品亚洲午夜久久久久91 | 91久久99热青草国产 | 欧美一级一片 | 国产一区二区影视 | 国产精品剧情一区二区在线观看 | 久久久久久久久久久久久国产精品 | 欧美精品久久久久久久久久 | 爱福利视频 | 亚洲二区不卡 | 精品国产一区二区三区天美传媒 | 成人男男视频拍拍拍在线观看 | 国产精品啪一品二区三区粉嫩 | 精品久久久久久久久久久久包黑料 | 国产剧情v888av | 国产免费高清在线视频 | a免费毛片 | 九九精品视频免费 |