我想在ASP.NET / C#中实现服务器端Pnotify功能。请帮助我尝试过,但没有任何事情发生。我也在使用母版页。
$(function () {
new PNotify({
title: 'Regular Notice',
text: 'Check me out! I\'m a notice.',
type: 'success',
cornerclass: 'ui-pnotify-sharp',
styling: 'bootstrap3'
});
});
答案 0 :(得分:0)
只需在页面的开头部分添加即可。这对我有用
<script type="text/javascript">
function () {
new PNotify({
title: 'Regular Notice',
text: 'Check me out! I\'m a notice.',
type: 'success',
cornerclass: 'ui-pnotify-sharp',
styling: 'bootstrap3'
});
};
</script>
答案 1 :(得分:0)
<!-- Theme JS files -->
<script type="text/javascript" src="assets/js/plugins/notifications/pnotify.min.js"></script>
您需要在页面顶部上传 pnotify Javascript 文件。