我有一个 jquery 滑块来选择以 15 分钟为增量的时间量。我需要在滑动时从 15 分钟到 1 小时,依此类推,直到 8 小时。我尝试了很多我在网上找到的例子,但都没有成功。现在我的滑块只是以 15 个 int 为增量,最多 480 分钟。任何帮助或其他想法将不胜感激。提前致谢。
源代码
<script type="text/javascript" language="javascript">
$(document).ready(function () {
$("#slider-range-max").slider({
range: "min",
min: 0,
max: 480,
value: 15,
step: 15,
slide: function (event, ui) {
$("#amount").val(ui.value);
$("#amount1").val(ui.value);
}
});
if("<%=this.IsPostBack%>" === "True")
{
$("#amount").val($("#slider-range-max").slider("value"));
$("#amount1").val($("#slider-range-max").slider("value"));
$("#txtHiddenAmount").val($("#amount").val());
}
});
<label for="amount">Time/Length in Minutes(Slide to Desired Amount, 1 Credit per hour):</label>
 
<input type="text" id="amount1" readonly="readonly" style="border: 0; color: #f6931f; font-weight: bold;" />
<asp:TextBox ID="amount" runat="server" Style="color: white" BorderWidth="0" ClientIDMode="Static">15</asp:TextBox>