我在我的网站上实现了一些javascript(materializecss),但我不断收到以下错误消息:Uncaught ReferenceError: Velocity is not defined
据我所知,这个错误是由于缺少jQuery,但我应该提一下,我的网站正在使用已经有jQuery库的Wordpress,对吗?
答案 0 :(得分:0)
这可能是由于使用较旧版本的jQuery进行WP安装造成的。
答案 1 :(得分:0)
如果使用0.97(我不完全确定)
// Velocity has conflicts when loaded with jQuery, this will check for it
var Vel;
if ($) {
Vel = $.Velocity;
}
else {
Vel = Velocity; // change value with jQuery.Velocity
}