我一直在尋找的視頻頁面YouTube的HTML源代碼,看到這些標籤:使用link標籤,而不是在語義標記meta標籤,如果值是一個URL
<div id="watch7-container" itemscope itemtype="http://schema.org/VideoObject">
<link itemprop="url" href="http://www.youtube.com/watch?v=ikbEBp5BeCM">
<meta itemprop="name" content="THE TEST">
<meta itemprop="duration" content="PT1M10S">
<meta itemprop="unlisted" content="False">
<link itemprop="embedURL" href="http://www.youtube.com/v/ikbEBp5BeCM?autohide=1&version=3">
<meta itemprop="playerType" content="Flash">
<meta itemprop="width" content="640">
<meta itemprop="height" content="480">
每次值是網址,YouTube使用link
標記代替meta
標記。
http://validator.w3.org/驗證了<meta content="http://..." itemprop="url">
和<link href="http://..." itemprop="url">
爲有效的HTML。
這樣做的好處是什麼?