Javascript 获取键盘的KeyCode

通过Javascript如何获取键盘的KeyCode呢?这里有一个例子,仅供参考。

html页面代码如下:

<input type="text" id="txtSearch"  önkeypress="searchKeyPress(event);" />

Javascript代码如下:

function searchKeyPress(e)         
{
    // look for window.event in case event isn't passed in
    if (window.event) { e = window.event; }
    if (e.keyCode == 13) {
       alert('Enter key pressed on the Text Box control'); 
    }         
}
虽然是一些很小的知识点,要用的时候可能需要去找,记录在这里作为记录,高手勿喷,欢迎留言。

你可能感兴趣的:(JavaScript,html,function)