0
我試圖在光標移動到元素時保持切換的元素可見。如果光標位於打開的元素內,則保持元素處於打開狀態
我的代碼是現在:
<div class="infobox">
<i class="icon-info-sign"></i>
<div class="infobox_content" style="display: none;">
Content
</div>
</div>
有了這個JavaScript/jQuery的
$("div.infobox i.icon-info-sign").hover(
function() {
$(this).parent().find(".infobox_content").stop(true).show("slow");
},
function (e) {
$(this).parent().find(".infobox_content").stop(true).hide("slow");
}
);
我如何檢測出光標已移動到.infobox_content
?如果是這樣,我需要讓元素保持打開狀態,並且只能在.infobox_content
之外再次隱藏元素。
這工作就像一個魅力。那裏沒有其他元素。感謝您及時的回覆。簡單而聰明:-) – janhartmann 2013-03-10 13:17:50