如何保存jquery滑块的选定值
有谁知道如何将滑块的值保存在数据库中?我想在用户停止滑动时保存滑块的位置。我没有问题获得价值 在客户端,但我还需要将选定的滑块值保存在数据库中。 任何建议都将不胜感激。
提前致谢。
Does any one know how I can save a slider's value in the database? I would like to save the slider's position when the user stops sliding. I have no problem get the value
on the client side but I need to save the selected slider value in the database as well.
Any suggestion is greatly appreciated.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了一种方法来完成这项工作,但我不确定这是否是最有效的方法。
我创建了一个 HiddenField 并使用以下语法分配滑块的 ui.value:
$("#ContentPlaceHolder1_sliders_SliderStoppedValue").val(SliderStoppedValue);
I found a way to make this work but I am not sure if this is the most efficient way of doing it.
I created a HiddenField and assign the slider's ui.value by using the syntax below:
$("#ContentPlaceHolder1_sliders_SliderStoppedValue").val(SliderStoppedValue);