0

我的项目中有一个 jquery noty 实现。使用这个我在我的页面中显示一个模式消息。当我按下消息的确定按钮时,模式消息正在关​​闭。现在我需要在输入键时关闭消息。我怎么能做到这一点。请帮忙

    <script type="text/javascript">
        function generatemodal(type, layout, textcontent) {
            var n = noty({
                text: textcontent,
                type: type,
                modal: true,
                layout: layout,
                theme: 'defaultTheme',
                buttons: [
                    {
                        addClass: 'btn btn-primary', text: 'Ok', onClick: function ($noty) {
                            $noty.close();

                        }
                    }
                ]
            });
            console.log('html: ' + n.options.id);
        }

        function generatemodalcall(mess) {

            generatemodal('warning', 'center', mess);

        }


</script>

4

1 回答 1

1

也许这个?

$(document).keypress(function(e) {
    if(e.which == 13) {
        $.noty.closeAll();
    }
});
于 2015-07-12T18:50:41.323 回答