我有一個單擊按鈕後會出現的元素。我現在想要的是當我的鼠標指針離開元素時隱藏元素。這怎麼可能?由於JS當鼠標離開內容區域時隱藏html內容
JS腳本:
$(document).ready(function() {
$('.hide').hide();
$('.button').click(function() {
$(this).closest('div').find('.hide').toggle(400);
return false;
});
HTML代碼:
<a class="button" >More</a>
<div class="hide" ><img src="images/icon.png" /></div>
//I want this div hide element to hide after my mouse pointer leave this div area
非常感謝你:d
檢查更新的答案。 – 2013-05-09 08:16:25