我有一个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>
也许是这个?
$(document).keypress(function(e) {
if(e.which == 13) {
$.noty.closeAll();
}
});