这是我的 jQuery 移动滑块代码,我想使用滑块将一个页面导航到另一个页面。请看我的代码。
<label for="slider-1">Chapter:</label>
<input type="range" name="slider-1" id="slider-1" value="1" min="1" max="2" />
<script>
$(document).ready(function(){
$("#slider-1").change(function() {
var SliderValue = $("#slider-1").val();
console.log(slider_value)
if(SliderValue>0){
//window.location = document.location+"#page"+SliderValue;
}
});
});
</script>
我刚刚在这里记录了变量 SliderValue,我可以看到该值增加到 295。
谁能告诉我如何获得活动的实际价值?
提前致谢,