jQuery Vertical ui slider 根据变量结果向上移动

发布于 2024-11-30 15:31:52 字数 521 浏览 0 评论 0原文

我有一个计算器,可以执行基本乘法并在单击提交后输出结果。我基本上希望这个结果填充垂直滑块,但我不知道如何传递变量作为 jQuery 滑块的值...

$( ".slider-photos" ).slider({
        orientation: "vertical",
        animate:true,
        range: "min",
        value: [resultnumberhere],
        min: 1,
        max: 500,


        slide: function( event, ui) {
            $( ".slider-results-photos").html( ui.value );
        },

        change: function(event, ui) {
        $('#photos').attr('value', ui.value);
        }

        });

我将非常感谢任何帮助!

I have calculator that performs basic multiplication and outputs a result upon clicking submit. I basically want this result to fill a vertical slider, but I can't figure out how to pass a variable as the value for the jQuery slider...

$( ".slider-photos" ).slider({
        orientation: "vertical",
        animate:true,
        range: "min",
        value: [resultnumberhere],
        min: 1,
        max: 500,


        slide: function( event, ui) {
            $( ".slider-results-photos").html( ui.value );
        },

        change: function(event, ui) {
        $('#photos').attr('value', ui.value);
        }

        });

I would greatly appreciate any help!

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

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

发布评论

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

评论(1

温馨耳语 2024-12-07 15:31:53

只需放置对范围内变量的引用即可。

请记住,变量仅在 JavaScript 中具有函数作用域,因此请检查您的作用域是否正确。

Just place a reference to a variable there that is in scope.

Remember variables are only function scoped in JavaScript, so check your scopes are correct.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文