我的项目中有一个jquery noty实现。使用这个我在我的页面中显示模态消息。当我按下消息的OK按钮时,模态消息正在关闭。现在我需要在输入按键时关闭消息。我怎么能这样做。请帮忙
<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>
答案 0 :(得分:1)
也许这个?
$(document).keypress(function(e) {
if(e.which == 13) {
$.noty.closeAll();
}
});