如何使脚本将两个不同的区域标签解释为一个?
比如我这里有一张肌肉图
<img src="http://www.ise-dvp.narod.ru/atletics/images/man2.gif" class="atlas" alt="muscles" usemap="#Navigation">
<map id="Navigation" name="Navigation">
<area shape="poly" coords="88,265,74,266,65,257,57,226,64,199,75,182,87,181,102,198,106,214,100,240,97,251,86,261,80,263,85,262" href="#" alt="muscle1">
<area shape="poly" coords="123,269,108,237,108,208,114,196,126,183,139,181,145,194,152,218,154,233,152,254,146,272,139,279,120,275,121,267" href="#" alt="muscle2">
</map>
$(document).ready(function ()
{
$('.atlas').maphilight();
});
使用 maphilight.js 在鼠标悬停时选择区域。我需要选择大腿肌肉(两条腿),但它只选择一个。我的其他肌肉也有同样的问题。我想在鼠标悬停时同时选择它们。
是否可以合并 2 个区域标签或让 maphilight.js 选择 2 个标签作为一个标签?
请帮忙=)