Jquery通过上/下箭头键盘增加/减少输入文本中的数字

时间:2011-12-22 19:28:00

标签: javascript jquery

我有一个基本数量字段,并希望允许用户根据键盘上/下增加/减少此输入框中的数字。

继续:关于键盘代码https://stackoverflow.com/a/375426/560287的EndangeredMassa答案我将如何将其添加到键盘功能中?

var keynum = 0;

if(window.event) { keynum = e.keyCode; }  // IE (sucks)
else if(e.which) { keynum = e.which; }    // Netscape/Firefox/Opera

if(keynum == 38) { // up
    //Move selection up
}

if(keynum == 27) { // down
    //Move selection down
}

8 个答案:

答案 0 :(得分:6)

//cache our input since we will be working with it each time an arrow key is pressed
var $input = $('input');

//bind the the `keydown` event for the `document` object which will catch all `keydown` events that bubble up the DOM
$(document).on('keydown', function (event) {

    //up-arrow (regular and num-pad)
    if (event.which == 38 || event.which == 104) {

        //make sure to use `parseInt()` so you can numerically add to the value rather than concocting a longer string
        $input.val((parseInt($input.val()) + 1));

    //down-arrow (regular and num-pad)
    } else if (event.which == 40 || event.which == 98) {
        $input.val((parseInt($input.val()) - 1));
    }
});

以下是演示:http://jsfiddle.net/QRNP8/1/

请注意,jQuery会将charCode / keyCode属性规范化为event.which

  

查询规范化跨浏览器的以下属性   一致性:

target
relatedTarget
pageX
pageY
which
metaKey

来源:http://api.jquery.com/category/events/event-object/

答案 1 :(得分:4)

将输入类型设置为数字也可以。虽然这在IE9及以下版本中不会起作用。



<input type="number">
&#13;
&#13;
&#13;

来源:http://www.w3schools.com/html/tryit.asp?filename=tryhtml_input_number

答案 2 :(得分:2)

有一个小的jQuery插件可以执行此操作:https://github.com/nakupanda/number-updown

用途:

$('#textInput').updown();

在此处查看实时演示:http://jsfiddle.net/XCtaH/embedded/result/

支持键盘和鼠标滚轮事件

答案 3 :(得分:1)

你可以这样做:

<input type="text" id="yourinput" value="0">

$(document).on("keypress", '*', function(e) {
    if (e.keyCode == 38) { // up
        $('#yourinput').val(parseInt($('#yourinput').val(), 10) + 1);
    }

    if (e.keyCode == 40) { // down
        $('#yourinput').val(parseInt($('#yourinput').val(), 10) + 1);
    }
});

在这里摆弄http://jsfiddle.net/mSCBL/1/

答案 4 :(得分:1)

$("input").keypress(function(event) {
      var val=$(this).val();
      if ( event.keyCode== 38) {
          val++
         $(this).val(val)
      }
      if ( event.keyCode== 40) {
          val--
          $(this).val(val)
      };    
});

答案 5 :(得分:0)

$("something").keyup(function(e){
    var keynum = 0;

    if(window.event) { keynum = e.keyCode; }  // IE (sucks)
    else if(e.which) { keynum = e.which; }    // Netscape/Firefox/Opera

    if(keynum == 38) { // up
       //Move selection up
    }

    if(keynum == 27) { // down
       //Move selection down
    }
});

something是一个与您的输入匹配的选择器。

答案 6 :(得分:0)

您的代码看起来是正确的。如果你只是想知道如何将代码绑定到事件......

$('#itemId').keyup(function(e){ 
    /*YOUR CODE*/  
});

答案 7 :(得分:0)

这应该有效

if(keynum == 38) { // up
    this.value = parseInt(this.value)-1;
}

if(keynum == 27) { // down
    this.value = parseInt(this.value)+1;
}