我的项目中有一个 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>