jQuery滑块不起作用。控制台中没有错误,在其他类似问题中,jQuery库存在问题,但我认为我的还不错。我还检查了库是否通过浏览器控制台>网络以正确的顺序下载。我该怎么办?
$("#mockSlider").slider({
range: false,
min: 0,
max: 100,
slide: function(event, ui){
doSomething(ui.value);
}
});
function doSomething(sliderValue){
$('input[type="text"]').attr('value', sliderValue);
};
#mockSlider {
width: 80%;
margin-bottom: 15px;
}
#currentValue {
width: 15%;
text-align: center;
}
<link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<link rel="stylesheet" href="styles.css">
<div>
<center>
<h1>Slider</h1>
<div id="mockSlider"></div>
<input type='text' id='currentValue'>
</center>
</div>
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script src="main.js"></script>