HTMLtype 屬性
<area> 元素的 type 屬性設定目標 url 的 MIME(多用途網際網路郵件擴充套件)型別。以下是語法 −
<area type="type_of_media">
上面,type_of_media 是連結文件的標準媒體型別,例如,image/bmp、image/tiff、image/tff 等。
現在我們來舉一個例子來實現 <area> 元素的 type 屬性 −
示例
<!DOCTYPE html> <html> <body> <h2>Learning</h2> <p>Learn these technologies with ease....</p> <img src = /images/usemap.gif alt = "usemap" border = "0" usemap = "#tutorials"/> <map name = "tutorials"> <area shape = "poly" coords = "74,0,113,29,98,72,52,72,38,27" href = "/perl/index.htm" alt = "Perl Tutorial" download="perl" hreflang="en"/> <area shape = "rect" coords = "22,83,126,125" alt = "HTML Tutorial" href = "/html/images/test.png" type="image/png" /> <area shape = "circle" coords = "73,168,32" alt = "PHP Tutorial" href = "/php/index.htm" target = "_blank" download="php" hreflang="en"/> </map> </body> </html>
輸出
現在,當你點選 HTML 區域時,將看到以下 png 影像。我們已將媒體型別設定為 image/png −
廣告