Jquery ui.slider 帮助

发布于 2024-11-25 13:07:39 字数 425 浏览 3 评论 0原文

我正在使用 ui.slider 的实现,它控制 Jquery 网站上找到的 ui.tabs:

http ://jqueryui.com/demos/slider/#tabs

一切工作正常,但是当我直接链接到选项卡时,滑块始终保持在其初始位置(或您所说的初始值)。

演示可以在这里找到: http://jqueryui.com/demos/slider/tabs .html#tabs-2

有没有办法将滑块设置为直接链接到选项卡时与选项卡相同的位置?

非常感谢。

I am using this implementation of the ui.slider which controls the ui.tabs as found on the Jquery website:

http://jqueryui.com/demos/slider/#tabs

Everything is working fine however when I directly link to a tab, the slider always stays in its initial position (or whatever you stated as the initial value).

Demo can be found here: http://jqueryui.com/demos/slider/tabs.html#tabs-2

Is there any way of setting the slider to the same position as the tab when it is directly linked to?

Thanks very much.

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

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

发布评论

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

评论(1

溺ぐ爱和你が 2024-12-02 13:07:39

像这样的事情应该这样做:

$(function() {
        $( "#tabs" ).tabs({
            select: function( event, ui ) {
                $( "#slider" ).slider( "value", ui.index );
            }
        });
        $( "#slider" ).slider({
            min: 0,
            max: $( "#tabs" ).tabs( "length" ) - 1,
            slide: function( event, ui ) {
                $( "#tabs" ).tabs( "select", ui.value );
            },
            value: $( "#tabs" ).tabs( "option", "selected" )
        });
    });

Something like this should do it:

$(function() {
        $( "#tabs" ).tabs({
            select: function( event, ui ) {
                $( "#slider" ).slider( "value", ui.index );
            }
        });
        $( "#slider" ).slider({
            min: 0,
            max: $( "#tabs" ).tabs( "length" ) - 1,
            slide: function( event, ui ) {
                $( "#tabs" ).tabs( "select", ui.value );
            },
            value: $( "#tabs" ).tabs( "option", "selected" )
        });
    });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文