按键增量数(JavaScript)

时间:2014-04-14 01:32:55

标签: javascript php html html5 web

我正在尝试使用html在屏幕上显示段落标记。我希望能够按一个键并使该段标记中的数字增加。这就是我想做的一切。

这似乎应该很容易,但我不知道该怎么做。

感谢。

2 个答案:

答案 0 :(得分:2)

使用jQuery:

Jquery的:

$(document).ready(function(){
    $('body').keydown(function(){
        console.log('keydown');
        $('#increment').text(parseInt($('#increment').text())+1);   
    });

});

HTML:

<p id="increment">0</p>

答案 1 :(得分:2)

检查一下。这没有jQuery,但它正是你要找的。

http://jsfiddle.net/2rAj9/

JS:

var p = document.querySelector('p')

document.addEventListener('keydown', increment, false);

function increment() {
    var number = parseInt(p.innerText);
    number++;
    p.innerText = number;
}

HTML:

<p class="increment">0</p>