未捕获的ReferenceError:jquery-2.1.4.min

时间:2018-04-02 06:46:57

标签: javascript jquery wordpress plugins

我是JavaScript编程领域的新手。

我正在尝试让插件在WordPress上运行,但我收到了这个错误:

Uncaught ReferenceError: PhotoBlocks is not defined
    at HTMLDocument.<anonymous> (?p=40:408)
    at j (jquery-2.1.4.min.js:2)
    at Object.fireWith [as resolveWith] (jquery-2.1.4.min.js:2)
    at Function.ready (jquery-2.1.4.min.js:2)
    at HTMLDocument.I (jquery-2.1.4.min.js:2)

1 个答案:

答案 0 :(得分:0)

此问题有两个问题。首先,在您的文件中添加了两个jQuery

此外,您需要更改:

$(document).ready(function(){
     'enter code here'
});

(function(){
   'enter code here'
})(jQuery);