如何为每个JQuery UI Slider句柄使用不同的图像

时间:2009-08-04 12:33:43

标签: jquery css slider

我正在使用一个JQuery UI滑块,它有两个手柄(a.k.a range 滑块)。我知道如何style the first handle

.ui-slider-horizontal .ui-slider-handle {background: white url(https://stackoverflow.com/content/img/so/vote-arrow-down.png) no-repeat scroll 50% 50%;}

但我如何以不同的方式设计第二个手柄?

使用Firebug我可以看到Jquery没有唯一标识每个句柄:

<div id="hourlyRateSlider" class="ui-slider ui-slider-horizontal ui-widget ui-widget-content ui-corner-all">
 <div class="ui-slider-range ui-widget-header" style="left: 26%; width: 46%;"/>
 <a class="ui-slider-handle ui-state-default ui-corner-all" href="#" style="left: 26%;"/>
 <a class="ui-slider-handle ui-state-default ui-corner-all" href="#" style="left: 72%;"/>
</div>

所以我想我必须使用CSS子选择器,这可能是跨浏览器问题。或者我可以使用一些JQuery技巧将CSS类添加到第二个句柄?有人这么做过吗?

2 个答案:

答案 0 :(得分:12)

$(window).load(function(){
    handle = $('#slider A.ui-slider-handle');        
    handle.eq(0).addClass('first-handle');        
    handle.eq(1).addClass('second-handle');
});

答案 1 :(得分:0)

的CSS:

#hourlyRateSlider a:last-child {}