请帮助解决我的问题。我是jquery ui的新人。并试图创建jquery滑块: http://jsfiddle.net/InviS/LYE8B/4/ 但它超越了我的正确位置(见例)。我该如何限制滑块?
答案 0 :(得分:3)
在这里:http://jsfiddle.net/NAC7b/10/。
有点hacky,但我将滑块包裹在父<div>
内,并为滑块指定最大宽度93%
。这是我改变的CSS:
#wrapper{
width: 100%;
height: 20px;
background-color: orange;
border-top: 1px solid black;
position: absolute;
left: 0;
top: 129px;
}
#scroll{
width: 93%;
height: 20px;
background-color: orange;
border-top: 1px solid black;
position: relative;
left: -1px;
top: -1px;
}
和JavaScript:
$('#scroll').slider({animate: true}).bind('slidestop',function(e,ui){
//alert(ui.value);
}).wrap('<div id="wrapper" />');