按回车键时如何关闭jquery通知确认消息
how to close jquery noty confirm message when pressing enter key
我的项目中有一个 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();
}
});
我的项目中有一个 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();
}
});