jQueryモバイルスライダー入力を使用しています。ページに複数のスライダーを含めることができますが、実際の入力値が変更されたときだけでなく、「変更」イベントが頻繁に発生します。これは私のコードです:
<div class="questionContent ui-hide-label" data-role="fieldcontain">
<input type="range" class="slider" value="" min="1" max="5" data-highlight="true" name="slider" data-theme="b" />
</div>
$('input.slider').each(function() {
$(this)
.bind('change',function() {
console.log('changed')
})
})
そのためのjsFiddleも作成しました:http://jsfiddle.net/EAewE/