答案 0 :(得分:1)
您必须标识自己的inputs
和outputs
,以便以某种方式链接它们。例如,您可以为id
元素提供input
,并为输出提供与相关class
的ID匹配的input
名称。使用简单的选择器,您可以定位适当的element
进行修改。像这样:
<h2>Floating point boundaries</h2>
<input id="floating" type="range" value="0.5" step="0.1" min="0.1" max="3.0">
<br>
<output class="floating">0.5</output>
<h2>Other slider</h2>
<input id="other" type="range" value="0.5" step="0.1" min="0.1" max="3.0">
<br>
<output class="other">0.5</output>
然后:
$(document).on('input', 'input[type="range"]', function(e) {
document.querySelector('output.'+this.id).innerHTML = e.target.value;
});