HTML范围滑块和jQuery?

2022-01-24 00:00:00 slider jquery html

我的网站中有以下代码,并使用 HTML5 集成了一个范围滑块.我希望滑块用值更新文本输入,反之亦然.我会使用 jQuery 来做到这一点吗?如果可以,可以给我示例代码吗?

I have the code below in my website and integrated a range slider using HTML5. I want the slider to update the text-input with the value and vice versa. Would I do this using jQuery? If so can you give me example code?

谢谢.

<input type="text" name="chance" id="chance" class="text" value="50">

<input type="range" id="chance" class="vHorizon" min="0.01" max="98" style="background-color: #00aec8; width: 50%;">

推荐答案

您可以使用滑块上的 change 事件和文本框上的 keyup 事件来更新值.

You can use change event on slider and keyup event on textbox to update the values.

HTML

<input type="text" name="chance" id="chance" class="text" value="50">

<input type="range" id="chanceSlider" class="vHorizon" min="0.01" max="98" step="0.01" style="background-color: #00aec8; width: 50%;">

jQuery

$('#chanceSlider').on('change', function(){
    $('#chance').val($('#chanceSlider').val());
});

$('#chance').on('keyup', function(){
    $('#chanceSlider').val($('#chance').val());
});

和 jsfiddle 一起玩

And jsfiddle to play with

http://jsfiddle.net/tDkEW/1/

相关文章