我有一个页面,我想在其中使用PNotify显示通知。如何使用PNotify -javascript 库在此页面上显示通知。
问问题
1285 次
1 回答
1
根据 PNotify文档:
$(document).ready(function() {
(new PNotify({
title: 'Regular Notice,
text: 'Check me out! I\'m a notice.',
type: 'info',
styling: 'bootstrap3'
}));
});
于 2018-06-28T07:58:07.950 回答