jQuery UI 滑块在 WordPress 主题中不起作用

发布于 2025-01-08 13:45:30 字数 520 浏览 1 评论 0原文

我在使 jQuery UI 的滑块适用于我的 Wordpress 主题时遇到问题。

我已经将脚本加入队列仍然没有成功。我做错了什么?

wp_deregister_script('jquery');

wp_register_script('jquery', get_template_directory_uri().'/library/js/jquery-1.6.4.min.js', false);

wp_register_script('jquery_ui', get_template_directory_uri().'/library/js/jquery-ui.js', array('jquery-ui-core'),'1.7.3');

wp_enqueue_style('jquery-ui', get_template_directory_uri().'/library/css/jquery-ui.css');


wp_enqueue_script('jquery');

wp_enqueue_script('jquery_ui');

I'm having issues making jQuery UI's slider to work on my Wordpress theme.

I have enqueued the script still no success. What am I doing wrong?

wp_deregister_script('jquery');

wp_register_script('jquery', get_template_directory_uri().'/library/js/jquery-1.6.4.min.js', false);

wp_register_script('jquery_ui', get_template_directory_uri().'/library/js/jquery-ui.js', array('jquery-ui-core'),'1.7.3');

wp_enqueue_style('jquery-ui', get_template_directory_uri().'/library/css/jquery-ui.css');


wp_enqueue_script('jquery');

wp_enqueue_script('jquery_ui');

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你的他你的她 2025-01-15 13:45:30

为什么不使用 WordPress 内置脚本?如果您只想使用 jquery ui slider,则按以下方式排队:

wp_enqueue_script('jquery');
wp_enqueue_script('jquery-ui-core');
wp_enqueue_script('jquery-ui-slider');

Why not use the WordPress inbuilt scripts? if you only want to use jquery ui slider then enqueue in the following way:

wp_enqueue_script('jquery');
wp_enqueue_script('jquery-ui-core');
wp_enqueue_script('jquery-ui-slider');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文