jQuery Vertical ui slider 根据变量结果向上移动
我有一个计算器,可以执行基本乘法并在单击提交后输出结果。我基本上希望这个结果填充垂直滑块,但我不知道如何传递变量作为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需放置对范围内变量的引用即可。
请记住,变量仅在 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.