Capturing the tab key using JavaScript in Firefox

2019-01-27 23:40发布

I use the following to restricts user to enter only some characters. When I press tab, the cursor does not point to next control (in Mozilla). But it works fine in IE.

// Restricts user to enter characters other than a to z, A to Z and white space( )
// Rauf K. 06.11.2010
$("input:text.characters_only").keypress(function(e) {
if (!((e.which >= 65 && e.which <= 90) || (e.which >= 97 && e.which <= 122) || e.which == 32 || e.which == 8 || e.which == 9)) {
        return false;
    }
});

2条回答
做个烂人
2楼-- · 2019-01-27 23:57

Perhaps if you start with something like:

if (e.keyCode === 9) { // TAB
    return true;
}
查看更多
Anthone
3楼-- · 2019-01-28 00:07

I would recommend trying e.keyCode instead of e.which. Here is a SO link that describes a good method of getting the key strike into a single variable regardless: jQuery Event Keypress: Which key was pressed?

查看更多
登录 后发表回答