如何按ESC键关闭四四方方的窗口?

时间:2010-12-20 23:38:45

标签: jquery-plugins boxy

我正在使用http://onehackoranother.com/projects/jquery/boxy/

如何按ESC键关闭方框窗口?

1 个答案:

答案 0 :(得分:1)

        if (this.options.closeable) {
            jQuery(document.body).bind('keypress.boxy', function(evt) {
                var key = evt.which || evt.keyCode;
                if (key == 27) {
                    self.hide();
                    jQuery(document.body).unbind('keypress.boxy');
                }
            });
        }