我真的很喜欢Noty 插件,但我不明白如何将一些文本传递给它。
我有以下 Flash 消息标记:
<div class="flash-messages">
<div class="flash-message notice">Signed out successfully.</div>
</div>
要使用 noty,我可以简单地调用:
var noty = noty({text: 'noty - a jquery notification library!'});
但是我怎么能将文本从 .flash-message 传递到 noty 的文本选项?我还希望 .notice .error 类来操作通知样式。
提前谢谢了!