使用 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中文網其他相關文章!