Wordpress:未捕获引用错误:未定义速度

Wordpress: Uncaught ReferenceError: Velocity is not defined

本文关键字:错误 未定义 速度 引用 Wordpress      更新时间:2023-09-26

我在我的网站上实现了一些javascript(物化),但我一直收到以下错误消息:Uncaught ReferenceError: Velocity is not defined

我知道,这个错误是由于缺少jQuery,但我应该提到,我的网站正在使用Wordpress,它已经有jQuery库了,对吧?

这可能是由于使用旧版本的jQuery安装WP所致。

如果使用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
}