在页面加载时显示 PNotify 通知
Show PNotify notification on page load
我有一个页面,我想在其中使用 PNotify 显示通知。如何使用 PNotify-javascript 库在此页面上显示通知。
根据 PNotify documentation:
$(document).ready(function() {
(new PNotify({
title: 'Regular Notice,
text: 'Check me out! I\'m a notice.',
type: 'info',
styling: 'bootstrap3'
}));
});
我有一个页面,我想在其中使用 PNotify 显示通知。如何使用 PNotify-javascript 库在此页面上显示通知。
根据 PNotify documentation:
$(document).ready(function() {
(new PNotify({
title: 'Regular Notice,
text: 'Check me out! I\'m a notice.',
type: 'info',
styling: 'bootstrap3'
}));
});