【发布时间】:2018-12-07 03:02:23
【问题描述】:
我有一个页面,我想在其中使用 PNotify 显示通知。如何使用 PNotify-javascript 库在此页面上显示通知。
【问题讨论】:
标签: javascript jquery pnotify
我有一个页面,我想在其中使用 PNotify 显示通知。如何使用 PNotify-javascript 库在此页面上显示通知。
【问题讨论】:
标签: javascript jquery pnotify
根据 PNotify documentation:
$(document).ready(function() {
(new PNotify({
title: 'Regular Notice,
text: 'Check me out! I\'m a notice.',
type: 'info',
styling: 'bootstrap3'
}));
});
【讨论】: