添加文本框值的 UI 滑块

发布于 2024-11-29 14:31:58 字数 905 浏览 1 评论 0原文

希望有人可以帮助我,我是 Jquery 的新手,这是我唯一仍在挣扎的事情。我有一个带有 3 个文本框的滑块,滑动滑块时,它会自动将值填充到所有三个文本框。我希望第四个文本框添加已获取值的 3 个文本框中的所有值。

我使用以下方法获取值:

<script>
    $(function () {
        var sum = 0;
        $("#slider").slider({
            value: 2300,
            min: 500,
            max: 4500,
            step: 100,
            length: 300,
            slide: function (event, ui) {
                // Rule Calculation
                if (ui.value < 1000)
                    $("#amount3").val(ui.value * 0.15)
                else
                    $("#amount3").val(150)

                //10% Calculation
                if (ui.value > 1000)
                    $("#amount8").val(ui.value - 1000)
                else
                    $("#amount8").val(0)

                $("#amount").val("R" + ui.value)

                $("#amount9").val($("#amount8").val() * 0.10)

Hope someone can help me, I am new to Jquery and this is the only thing I am still struggeling with. I have a slider with 3 textboxes, when sliding the slider it will auto populate the values to all three textboxes. I want the fourth textbox to add all of the values from the 3 textboxes that's already got the values.

I am getting the values using the following:

<script>
    $(function () {
        var sum = 0;
        $("#slider").slider({
            value: 2300,
            min: 500,
            max: 4500,
            step: 100,
            length: 300,
            slide: function (event, ui) {
                // Rule Calculation
                if (ui.value < 1000)
                    $("#amount3").val(ui.value * 0.15)
                else
                    $("#amount3").val(150)

                //10% Calculation
                if (ui.value > 1000)
                    $("#amount8").val(ui.value - 1000)
                else
                    $("#amount8").val(0)

                $("#amount").val("R" + ui.value)

                $("#amount9").val($("#amount8").val() * 0.10)

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

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

发布评论

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

评论(2

东京女 2024-12-06 14:31:58

我修改了您的代码以执行您的要求。您可以在这里查看:

http://jsfiddle.net/rLKbR/163/

您必须使用'parseInt($("#idOfTextbox"))' 将文本框中的每个值转换为整数,以便可以将它们相加,否则您将得到值的串联作为结果。希望这能满足您的需求:)

I ammended your code to do what you asked. You can view it here:

http://jsfiddle.net/rLKbR/163/

You have to use 'parseInt($("#idOfTextbox"))' to convert each value in your textboxes to integers so they can be added, otherwise you will get a concatenation of the values as your result. Hopefully this has accomplished your needs :)

猫腻 2024-12-06 14:31:58

我做了类似的东西,因为我正在寻找这个功能

http://jsbin.com/ojeuc/1/edit< /a>

I made something similar because I was looking for this functionality

http://jsbin.com/ojeruc/1/edit

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