因此,在 IE11 中单击 jquery 中的区域不起作用。在 Chrome 中工作。当我单击图像上的选定区域时,如何使 IE 触发?
HTML:
<img src="http://www.free-pet-wallpapers.com/free-pet-wallpapers/free-pet-desktop-backgrounds/873826831.jpg" usemap="#map" />
<map name="map">
<area shape="rect" coords="25,25,75,75" href='#asd' />
</map>
jQuery:
$('area').on('click', function(){ alert('click'); })
jsfiddle: