【问题标题】:jQuery UI slider not working in Wordpress themejQuery UI 滑块在 Wordpress 主题中不起作用
【发布时间】:2012-02-24 21:03:26
【问题描述】:

我在让 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');

【问题讨论】:

    标签: jquery jquery-ui


    【解决方案1】:

    为什么不使用 WordPress 内置脚本?如果您只想使用 jquery ui 滑块,请按以下方式入队:

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

    【讨论】:

    • 感谢您节省了我的时间。
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2011-10-09
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2019-12-16
    • 1970-01-01
    相关资源
    最近更新 更多