减少射击事件
$("#slider").slider({
value: 1800,
min: 600,
max: 20000,
step: 10,
slide: function (event, ui) {
$("#amount").val(ui.value + " m³/h").change();
}
}
$('#amount').change()
从 ajax 请求中检索数据。
数据来自数据库,因此需要一秒钟才能获取它。滑动滑块时,数量应该增加/减少,但 ajax 请求应该每秒触发一次。
更改函数处理多种输入类型
$("#slider").slider({
value: 1800,
min: 600,
max: 20000,
step: 10,
slide: function (event, ui) {
$("#amount").val(ui.value + " m³/h").change();
}
}
$('#amount').change()
retrieves data from a ajax request.
The data comes from a database so it takes a second to get it.When sliding the slidebar the amount should increase/decrese but the ajax request should trigerd once a second.
The change function handles multiple input types
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)