Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有这张图片,我想在网页中显示它,矩形作为下拉菜单
你有什么想法不使用css将图像放在背景中吗
您可以使用 HTMLmap和area标签在图像上声明预设区域:http: //www.htmlquick.com/reference/tags/area.html
map
area
然后可以将下拉菜单应用于该区域的点击事件。
<map> <area shape="rect" coords="0, 1, 2, 3" onclick="dropdownClickEvent"> </map>