-2

我正在尝试使用 javascript 向下滚动页面。

如果我javascript:pageScroll()在链接或按钮中使用,我有这段代码可以正常工作:

<SCRIPT LANGUAGE="Javascript">
function pageScroll() {
        window.scrollBy(0,50); // horizontal and vertical scroll increments
        scrolldelay = setTimeout('pageScroll()',100); // scrolls every 100 milliseconds
}
</SCRIPT>

但是我需要知道如果用户在键盘上按下回车,我如何调用 pageScroll() 函数?

任何帮助将不胜感激。

4

2 回答 2

8
$(document).keypress(function(e) {
    if(e.which == 13) {
        //do stuff
    }
});
于 2013-08-12T14:34:20.077 回答
0

Use jQuery, you might be interested in .keypress(). Here: http://api.jquery.com/keypress/

Also you could have easily avoided this question by doing a simple Google search.

于 2013-08-12T14:34:44.960 回答