首頁  >  文章  >  web前端  >  在HTML中將一張圖片設定為伺服器端的影像映射?

在HTML中將一張圖片設定為伺服器端的影像映射?

WBOY
WBOY轉載
2023-09-15 11:49:021158瀏覽

在HTML中將一張圖片設定為伺服器端的影像映射?

使用 HTML 中的 ismap 屬性將映像設定為 HTML 中的伺服器端映像映射。

範例

您可以嘗試執行以下程式碼來實作 ismap 屬性 -

<!DOCTYPE html>
<html>
   <body>
      <a href="">
         <img src = "https://www.tutorialspoint.com/assets/videotutorials/courses/android_penetration_testing/380_course_203_image.jpg"
            alt="Android Penetration Testing"
            width = "300" height = "250" ismap>
      </a>
      <p>On clicking the coordinates is sent to the server as a URL query string.</p>
   </body>
</html>

以上是在HTML中將一張圖片設定為伺服器端的影像映射?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除