我是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)
答案 0 :(得分:0)
此问题有两个问题。首先,在您的文件中添加了两个jQuery
此外,您需要更改:
$(document).ready(function(){
'enter code here'
});
到
(function(){
'enter code here'
})(jQuery);