Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
希望我能清楚地解释这一点。
我希望有两个滑块,第二个滑块的输出取决于第一个滑块的输出。
首先,用户在第一个滑块上设置价格,然后用户使用第二个滑块设置允许购买的客户数量和项目,第二个滑块应该只输出计算中的整数。
例如。价格定为 50 英镑。然后第二个滑块应输出 1,2,5,10,25,50,因为这些是计算中唯一的整数。
我难住了!
$("#slider1, #slider2").on("slidechange", function() { var value1 = $('#slider1').slider('value'); var value2 = $('#slider2').slider('value'); // your computation here = outputVar $('#output').text(outputVar); });
像这样的东西应该适合你。基本上听用户更改滑块的值,获取您的值,并将它们输出到页面上的某个位置。