gpt4 book ai didi

javascript - 如何从 1 而不是 0 开始 DragDealer slider 值

转载 作者:行者123 更新时间:2023-12-01 05:31:30 24 4
gpt4 key购买 nike

HTML 代码是:

<div id="notary-slider" class="dragdealer">
<ul class="list_wrapper">
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
<li>5</li>
<li>6</li>
<li>7</li>
<li>8</li>
<li>9</li>
<li>10</li>
</ul>
<div class="handle red-bar">
<span class="value"></span>
</div>
<input type="hidden" name="answer[]" id="no-of-documents" required>
</div>


$(function() {
new Dragdealer('notary-slider', {
speed: 1,
loose: true,
steps: 10,
animationCallback: function(x, y) {
$('#notary-slider .value').text(Math.round(x * 10));
$("#no-of-documents").val(Math.round(x * 10));
}
});
})

在此js中, slider 的值从0到10打印,但我希望 slider 值从1到10开始。我使用了dragdealer slider 。谁能帮我解决这个问题。

最佳答案

尝试这样:

speed之前初始化x: 1,

$(function() {
new Dragdealer('notary-slider', {
x: 1,
speed: 1,
loose: true,
steps: 10,
animationCallback: function(x, y) {
$('#notary-slider .value').text(Math.round(x * 10));
$("#no-of-documents").val(Math.round(x * 10));
}
});
})

关于javascript - 如何从 1 而不是 0 开始 DragDealer slider 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37019774/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com