我找到了以下用于创建覆盖的脚本,该覆盖在另一个页面中打开:
<script>
$("a#selector").live("click", function(){
$(".overlayInner").load("logwork_form.php",
// the following is the callback
function(){$(".overlayOuter").fadeIn(300); });
});
</script>
我想请你帮我在脚本中添加一些额外的功能:在按下 esc 键时关闭覆盖。
我试过添加下面的代码,但它不起作用。
//close if esc key is pres
$(document).keyup(function(e) {
if (e.keyCode == 27) {
$(".overlayInner").close("logwork_form.php?proiect_id=13", function({
$(".overlayOuter").fadeOut(300);
});