最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - get spinner ui value on change - Stack Overflow

programmeradmin1浏览0评论

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
Add a ment  | 

2 Answers 2

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);
}
发布评论

评论列表(0)

  1. 暂无评论