我在 datalist 中有一个输入
<input type="text" value="1" id="txtcount">
我想在文本更改时获得它的新价值。
我使用此代码,但不适合我。
<script>
//look no global needed:)
$(document).ready(function(){
// Get the initial value
var $el = $('#txtcount');
$el.data('oldVal', $el.val() );
$el.change(function(){
//store new value
var $this = $(this);
var newValue = $this.data('newVal', $this.val());
})
.focus(function(){
// Get the value when input gains focus
var oldValue = $(this).data('oldVal');
});
});