在 HTML 中将图片设定为服务端图像映射?
在 HTML 中使用 ismap 属性将图片设定为服务端图像映射。
示例
你可以尝试运行以下代码来实现 ismap 属性 −
<!DOCTYPE html> <html> <body> <a href=""> <img src = "https://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>
广告