1

我正在尝试使用 Timepicker - 它是 jquery 的插件,http://trentrichardson.com/examples/timepicker/此插件需要滑块才能工作。

出于某种原因,我无法让滑块工作 - 我设法让正常的 jquery ui 数据选择器工作,但不能让滑块工作。

这是我当前的代码。

<script type="text/javascript" src="/wp-content/plugins/groupon_cart/js/jquery-ui-timepicker-addon.js"></script> 
<script type="text/javascript" src="/wp-content/plugins/groupon_cart/js/jquery-1.8.2.js"></script>
<script type="text/javascript" src="/wp-content/plugins/groupon_cart/js/jquery-ui-1.9.1.custom.js"></script>
<script type="text/javascript" src="/wp-content/plugins/groupon_cart/js/jquery.ui.slider.js"></script>

我检查了地址,他们工作。顺便说一句,我也试过不包括jquery.ui.slider.js.

我在页面底部执行以下操作:

 <div id="slider"></div>

 <script>var $j = jQuery.noConflict();
$j(document).ready(function() {

    $j(function() {
        $j( "#slider" ).slider();
    });
});
</script>
4

1 回答 1

0

正如Timepicker 网站上所述:

您还需要包含 jQuery 和 jQuery UI 以及 datepicker 和 slider wigits。您应该按以下顺序将它们包含在您的页面中:

  • jQuery
  • jQueryUI(带有 datepicker 和 slider wigits)
  • 时间选择器
于 2012-11-22T15:04:42.803 回答