这应该适用于任何浏览器,而不仅仅是 IE。在区域地图中,添加一个 id 标签。
<area shape="rect" id="yourid" coords="5,65,132,116" alt="Your Alt Description" />
在地图之外,将这种代码添加到 html 中,其中包含一个在 a 标签内有一个 id 的空 span。
<a href="an_image.jpg" rel="lightbox[a]" Title="My title"><span id="empty_span"></span></a>
使用 javaScript,做这样的事情
<script>
$('area').click(function(){
$("#empty_span").click();
});
</script>
对于多个区域,您可以创建多个点击函数或在区域标签和点击函数中为 id 编号 - 如下所示:
<map etc....
<area shape="rect" id="id1" coords="5,65,132,116" alt="1st Description" />
<area shape="rect" id="id2" coords="55,65,132,116" alt="2nd Description" />
<area shape="rect" id="id3" coords="105,65,132,116" alt="3rd Description" />
</map>
<a href="1st_image.jpg" rel="lightbox[a]" Title="1st title"><span id="span1"></span></a>
<a href="2nd_image.jpg" rel="lightbox[a]" Title="2nd title"><span id="span2"></span></a>
<a href="3rd_image.jpg" rel="lightbox[a]" Title="3rd title"><span id="span3"></span></a>
<script>
$('area').click(function(){
$("#span"+$(this).attr("id").substr(2)).click();
});
</script>