我正在使用 jquery 滑块和静态值,例如 Nikunj 为 1,Ravi 为 2,Ravi 为 5,但我想要 1,2,3,...或者任何整数都应该来自我的表 ID,名称也来自数据库表与我的ID有关。所以,怎么能这样做。
我有简单的 jquery 代码,静态到 1 到 5,enter code here
但我想要来自数据库的任何整数。我正在使用 snap 来增加滑块
我在 javascript 中的代码:
<script type="text/javascript" language="javascript">`$(function () {enter code here
$("#slider1").slider({
value:1, // this value should come from database
min: 1, //this value should come from database
max: 5, //this value should come from database
step: 1,
slide: function (event, ui) {
var slideyvalue = getConnectedValueById(ui.value);
$("#txtlusty").text(slideyvalue );
}
});
});
</script>