下面是一个函数,旨在循环一系列具有特定 id 属性的输入滑块并捕获它们的值。这没用。为什么哦'为什么?谢谢你。
JS 小提琴示例
HTML
<button id='button'>save</button>
<input id="pitchInput_1" type='range'></input>
<input id="pitchInput_2" type='range'></input>
JAVASCRIPT
$('#button').click(function(){
$('input[id^="pitchInput_"]').each(function(){
alert(this.id);
alert($('input[id^="pitchInput_"]').val()); // Doesn't capture correct val of BOTH sliders.
});
});