无法设置undefined的属性'plugin':shiner,js

时间:2013-08-29 05:38:59

标签: jquery

我有错误:无法设置属性'插件' of undefined:shiner.js

if ($.inArray(e(d), c) < 0) {
    jQuery.fx.pixelentity.plugin = function () {
        $.pixelentity.plugin.enable = true
    }
}

完整的代码在这里给出:

http://jsfiddle.net/XStv2/

可能是什么原因?我使用的是jquery 1.7.1

另一点,该插件在我的本地计算机上运行良好,但当它上传到服务器时,此错误指出

2 个答案:

答案 0 :(得分:0)

可能调用脚本错误的顺序冲突

  1. 添加jQuery
  2. 然后添加您的shiner.js插件库。

答案 1 :(得分:0)

当我评论你的问题时,我遇到了同样的问题,后来我删除了这些行,

jQuery.fx.pixelentity.plugin = function () {
            $.pixelentity.plugin.enable = true
        }

它有效。是的,这很奇怪,但它确实有效。

here is the working demo