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