0
我想創建一個菜單,當你點擊頁面上的任何其他地方div將被隱藏。這在一切,但Firefox的作品。在Firefox中,當你點擊該部分中的鏈接之一時,它不會進入鏈接,它只是關閉div。JavaScript點擊和隱藏問題火狐
代碼:
$(document).mouseup(function(e){//removes menu when clicked on any other part of page
if($(".menuone:visible").length > 0 ){
$('.menuone').hide();
}
});
HTML:
<div class="menuone">
<div class="col1">
<ul><li>Example link</li></ul>
</div>
</div>
感謝這個意願,但是這確實現在的工作 – meohmy
您是否設置了一個函數來實際設置變量? – will
不只是在頂部的編碼 – meohmy