0
我的頁面中有很多容器,用戶希望能夠使用ESC鍵關閉。用關鍵事件關閉容器
是否有任何動態的方式來確定哪些容器的第一個(如最高Z指數),以防萬一我有更多的一個打開?
我這樣做的方式非常有趣/醜陋。
我想重新發明輪子。
我的JS:
$(document).bind('keydown', function(e) {
if (e.which == 27) {
if($("#container1").css("display") == "block"){
// this is a sub-container inside the container1
if($("#subContainer1").css("display") == "block"){
$("#subContainer1").fadeOut();
}else{
$("#container1").stop(true,true).fadeOut('fast');
}
}else if($("#container2").css("display") == "block"){
// this is a sub-container inside the container2
if($('#subContainer2').css("display") == "block"){
$("#subContainer2").fadeOut();
}else{
$("#container2").stop(true,true).fadeOut('fast');
}
}
}
});
有任何其他智能的方式來做到這一點?
謝謝!
測試,只需關閉)綁定的;) –
功能隱藏在第一時間,但第二個DOS沒有。 –
每個運行所有容器類獲得每個z-index,如果他發現最高的,這個最高隱藏? –