我試圖讓一個div顯示懸停區域的alt文本 - 相對於懸停區域進行定位。懸停區域顯示alt文本在div中的映射 - 相對於懸停區域
我可以讓文字顯示,但不在正確的位置。
這是我的JS:
$(document).ready(function() {
if($('#Map')) {
$('#Map area').each(function() {
var altText = $(this).attr("alt");
$(this).mouseover(function() {
$("#popup").html(altText);
$('#popup').show();
});
$(this).mouseout(function() {
var altText = $(this).attr("alt");
$('#popup').hide();
});
});
}
});
你在用傳單嗎? – 2013-04-22 05:58:53