我想使用Timepicker - 它的插件jquery http://trentrichardson.com/examples/timepicker/
這個插件需要滑塊工作。Jquery滑塊不會工作
由於某種原因,我只是不能讓滑塊工作 - 我設法得到正常的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>
試試這個,你應該引用jQuery的,不實際的noConflict調用。 'jQuery.noConflict(); var $ j = jQuery; $ j(document).ready(function(){...});' –
嘗試過 - ddnt工作感謝您嘗試 –