1
我想在用戶更改JQuery範圍控件上的值時更新值。我試圖按照給出的示例here,但它不起作用。JQuery範圍事件未觸發。
$(document).ready(function() {
alert('ready1'); //This fires when the page loads.
// Logs the value while the user is moving the slider
$('.price-min').on('input', getValue);
function getValue(e) { //This never fires
var val = $(e.element).val();
alert(val);
}
});
HTML:
<div data-role="rangeslider">
<input type="range" name="price-min" id="price-min" value="200" min="0" max="1000">
<input type="range" name="price-max" id="price-max" value="800" min="0" max="1000">
</div>
有人能告訴我,我錯了?
不應該被宣佈爲功能您嘗試使用它之前 – Epirocks
你是不是在嘗試綁定事件處理程序選擇的任何元素。 id/name!= class – CBroe