我正在使用noty https://ned.im/noty/
这是我的代码:
<script>
function showNoty() {
var n = new Noty({
text: "<?php echo $message; ?>",
type: "error",
layout: "top",
theme:"sunset",
container: "#content",
closeWith:[]
});
n.show();
}
showNoty();
</script>
问题:
一切都很好,直到第 6 次单击按钮显示消息。 因此,我可以单击5次并正确显示消息,在+ 6单击时不再起作用。
有人可以给一些提示吗? 谢谢!
我需要使用静态方法(https://ned.im/noty/#/api?id=api-static-methods(
我通过以下方式解决了这个问题:
Noty.setMaxVisible(10);
谢谢大家!