gpt4 book ai didi

javascript - 错误: Object # has no method 'easeInOutCubic' - jquery-ui
转载 作者:行者123 更新时间:2023-12-02 18:21:16 24 4
gpt4 key购买 nike

我在使用 easyInOutCubic 时遇到了一些问题。

我想使用jquery switchButton插件:http://olance.github.io/jQuery-switchButton/在 WordPress 管理面板内。

我已经正确包含了代码,并且我也确信我有 jquery-ui 核心。

<script type='text/javascript' src='http://localhost/test/wp-admin/load-scripts.php?c=1&amp;load%5B%5D=admin-bar,hoverIntent,common,jquery-ui-core,jquery-ui-widget,jquery-ui-tabs,jquery-ui-mouse,jquery-ui-slider,jquery-ui-button&amp;ver=3.5.2'></script>

我认为 easeInOutCubic 是 jquery-ui 核心的一部分。或不? WordPress 是否包含它,或者我必须手动包含它?有什么想法吗?

S.

最佳答案

因此,缓动不包含在 jquery-ui-core 中。必须单独启用它。

wp_enqueue_script("jquery-effects-core");

上面的代码成功了。

关于javascript - 错误: Object #<Object> has no method 'easeInOutCubic' - jquery-ui,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18802101/

24 4 0