$(document).click(function(event) { $("#racePop").hide(speed) });//點選空白區域隱藏
$("#racePop").click(function(event) { $("#racePop").hide(speed) });//點選彈出層則自身隱藏
});
完整實例
複製代碼
程式碼如下:
這裡是彈出層效果
$("#racePop").css({ top:offset.top $(event.target).height() "px", left:offset.left });//設定彈出層位置
$("#racePop").show(speed);//動畫顯示
});
$(document).click(function(event) { $("#racePop").hide (speed) });//點選空白區域隱藏
$("#racePop").click(function(event) { $("#racePop").hide(speed) });//點擊彈出層則自身隱藏
});