jquery ui 滑块。请帮忙指正

发布于 2024-11-02 14:33:16 字数 176 浏览 0 评论 0原文

请帮助解决我的问题。我是 jquery ui 的新手。并尝试创建jquery滑块: http://jsfiddle.net/InviS/LYE8B/4/ 但它超出了我的正确位置(参见示例)。我怎样才能限制滑块?

help please to fix my problem. i am newby in jquery ui. And have tried to create jquery slider:
http://jsfiddle.net/InviS/LYE8B/4/
But it outstep my in right position (see example). how can i limit the slider?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

时间你老了 2024-11-09 14:33:16

在这里:http://jsfiddle.net/NAC7b/10/

这有点 hacky,但我将滑块包裹在父

内,并为滑块指定了 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" />');

Here you go: http://jsfiddle.net/NAC7b/10/.

It's a bit hacky, but I wrap the slider within a parent <div>, and give the slider a max-width of 93%. Here's my changed 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;
}

And JavaScript:

$('#scroll').slider({animate: true}).bind('slidestop',function(e,ui){
    //alert(ui.value);
}).wrap('<div id="wrapper" />');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文