Wordpress: Uncaught ReferenceError: Velocity is not defined
Wordpress: Uncaught ReferenceError: Velocity is not defined
我在我的网站上实施了一些 javascript (materializecss),但我不断收到以下错误消息:Uncaught ReferenceError: Velocity is not defined
我知道,这个错误是由于缺少 jQuery,但我应该提一下,我的网站正在使用 Wordpress,它已经有 jQuery 库,对吗?
这可能是由于您的 WP 安装使用了旧版本 jQuery。
如果你使用 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
}
我在我的网站上实施了一些 javascript (materializecss),但我不断收到以下错误消息:Uncaught ReferenceError: Velocity is not defined
我知道,这个错误是由于缺少 jQuery,但我应该提一下,我的网站正在使用 Wordpress,它已经有 jQuery 库,对吗?
这可能是由于您的 WP 安装使用了旧版本 jQuery。
如果你使用 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
}