我从 Pines Notify 下载了 pnotify jquery 插件

它只是告诉我添加所需的 js 和 css 文件,并在文档准备好以下应该工作!

$(document).ready(function() {
    $.pnotify({
        type: 'error',
        title: 'Errors found in form',
        text: 'Please check all form data, some items were invalid.',
        opacity: 0.95,
        hide:false,
        history: false,
        sticker: false
    });
});

但它只是不断给我错误



最愚蠢的事情是,我在 Visual VS 2012 和开发环境中向我显示 pnotify 作为“$”作为智能感知的函数!

我可能做错了什么?

最佳答案

使用 PNotify2.01,您可以将其与 reguirejs 一起使用

主要.js:

requirejs.config({
   paths: {
      pnotify: "/Static/plugins/pnotify/pnotify.custom.min"
   }
});

通知.js
define(['pnotify'], function () {
  return {
     SimpleNotice: function () {
        return new PNotify('Check me out! I\'m a notice.');
     }
  };
});

我从我的生产代码(Durandal 框架)中复制了这个

关于javascript - pnotify 拒绝工作,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15090058/

10-10 12:41