admin管理员组文章数量:1350044
How could get the value of a spinner when the value is changing with the button up and down?
<input type="text" id="spinner1" value="1" onchange="selFirt()" readonly>
<script>
$("#spinner1").spinner({min: 1, max: 5});
function selFirt(){
$('#spinner1').spinner().change(function(){
alert($(this).spinner('value'));
});
}
</script>
How could get the value of a spinner when the value is changing with the button up and down?
<input type="text" id="spinner1" value="1" onchange="selFirt()" readonly>
<script>
$("#spinner1").spinner({min: 1, max: 5});
function selFirt(){
$('#spinner1').spinner().change(function(){
alert($(this).spinner('value'));
});
}
</script>
Share
Improve this question
edited May 15, 2013 at 10:31
Kakitori
asked May 15, 2013 at 10:15
KakitoriKakitori
9136 gold badges16 silver badges41 bronze badges
2
- 1 what's .spinner() ??? – ebram khalil Commented May 15, 2013 at 10:27
- 1 A spinner enhance a text input for entering numeric values, with up/down buttons and arrow key handling. – Kakitori Commented May 15, 2013 at 10:32
2 Answers
Reset to default 6$('input[name*="name"]').spinner({
min: 0,
max: 100,
spin: function(event, ui) {
$(this).change();
}
});
SEE HERE
try the following :
$(function () {
var spinner = $("#spinner").spinner({
step: 2 ,
spin: function( event, ui ){
handleSpinnerValue(ui.value);
}
});
});
function handleSpinnerValue(txtValue)
{
//do here whatever you want with the value;
alert(txtValue);
}
本文标签: javascriptget spinner ui value on changeStack Overflow
版权声明:本文标题:javascript - get spinner ui value on change - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743871786a2553602.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论