将滑块的 ui.value (jquery UI) 中的值发送到 #link
我是一个 jq 新手,但我正在努力奋斗;(
问题:
我需要将滑块变量(ui.value)传递给“http://NAME/sensor?ConnectFloat InputB cf_GrA_l2pY VALUE_FROM_SLIDER”,其中 value_from_Slider 是值,当我停止滑动。 。
我的代码可以在这里找到: http://jsfiddle.net/f2AWC/30/
或此处:
$(function() {
$("#slider").slider({
value: 50,
min: 0,
max: 99,
step: 1,
slide: function(event, ui) {
$("#slider_value").val(ui.value);
}
});
$("#slider_value").val($("#slider").slider("value"));
});
html:
<div id="slider"></div>
sliderValue:
我知道我缺少一个新的 $function,但据我所知。
感谢您的帮助!
im a jq newbie, but im fighting my way trough ;(
question:
i need to pass a slider variable(ui.value) to a "http://NAME/sensor?ConnectFloat InputB cf_GrA_l2pY VALUE_FROM_SLIDER" where value_from_Slider is the value, when i stop sliding.
.
my code can be found here:
http://jsfiddle.net/f2AWC/30/
or here:
$(function() {
$("#slider").slider({
value: 50,
min: 0,
max: 99,
step: 1,
slide: function(event, ui) {
$("#slider_value").val(ui.value);
}
});
$("#slider_value").val($("#slider").slider("value"));
});
html:
<div id="slider"></div>
sliderValue:
i know that im missing a new $function, but this is as far as i understand.
Thanks for any help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
在帖子上回答可能有点晚了。
但是在查看问题之后。您可能需要通过 jquery slider 的 stop 事件发送 AJAX 请求。
以下代码可能会对将来面临同样问题的其他程序员有所帮助。
http://api.jqueryui.com/slider/#toptions
It might be a bit late to answer on the post.
But after looking at the question.You might need to send an AJAX request over the stop event of the jquery slider.
Following code might be helpful in future for fellow programmers facing the same problem.
http://api.jqueryui.com/slider/#toptions
使用
stop
事件这里是小提琴 http://jsfiddle.net/f2AWC/34/
use the
stop
eventhere is the fiddle http://jsfiddle.net/f2AWC/34/
我不确定我是否理解
http://NAME/sensor?ConnectFloat InputB cf_GrA_l2pY VALUE_FROM_SLIDER
的部分。你能在那里详细说明一下吗?当您停止滑动时,可以使用
stop
函数,其工作方式与slide
相同。文档此处I am not sure I understand the part with
http://NAME/sensor?ConnectFloat InputB cf_GrA_l2pY VALUE_FROM_SLIDER
. Can you elaborate a bit more there?When you stop sliding, you can use
stop
function, which works the same way asslide
. Documentation here您可以使用滑块 val 并将其附加到链接 href
例如
演示 - http://jsfiddle.net/Jayendra/f2AWC/32/
you can use the slider val and append it to the link href
e.g.
Demo - http://jsfiddle.net/Jayendra/f2AWC/32/