5
我試圖對圖像地圖區域的鼠標懸停執行操作。這是我的HTML:Jquery:圖像地圖區域上的鼠標懸停事件
<img src="img/denisanddavid-bkgd.jpg" alt="Denis and David - web development and solution" width="1024" height="1299" border="0" usemap="#bkgdMap" id="bkgd" />
<map name="bkgdMap" id="bkgdMap">
<area shape="rect" coords="12,161,341,379" href="#" alt="qdk" id="qdk" class="mapping" />
<area shape="rect" coords="347,162,675,379" href="#" alt="gifgif" alt="gifgif" class="mapping" />
</map>
這裏是我的JS:
$('.mapping').mouseover(function() {
alert($(this).attr('id'));
}).mouseout(function(){
alert('Mouseout....');
});
我不明白爲什麼,但jQuery是唯一首次啓動區域,而不是其他人。任何幫助將不勝感激。
謝謝。
好趕上,我從來沒有看過ID :)可悲的是,我已經燒了自己在此之前。 – Mfoo