我希望通过正则表达式监视角色。
$('#searchContent').keyup(function(e){
e = e || window.event;
var patt =/\w/g;
var key = String.fromCharCode(e.keyCode);
console.log ( "key " + key + e.keycode+ " is pressed!!");
if( e.keycode != 8 && e.keyCode != 46){ //Will return if printable char is not typed. But the datagrid will still refresh on pressing backspace.
console.log ( "key " + key+ e.keycode + "is about to take test!!" );
if(!patt.test(key)){
console.log ( "key " + key+e.keycode + "is failed!!");
return;
}
console.log ( "key " + key +e.keycode+ "is pressed passes the test!!");
}
else{
console.log ( "backspace or delete has ByPasses the conditoin!!");
}
// other operations....
}
//Result of my log. INPUT : RIS(<-backspace)
key R undefined is pressed!! index_tab.php:173
key R undefined is about to take test!! index_tab.php:176
key R undefined is pressed passes the test!! index_tab.php:181
key I undefined is pressed!! index_tab.php:173
key I undefined is about to take test!! index_tab.php:176
key I undefined is pressed passes the test!! index_tab.php:181
key S undefined is pressed!! index_tab.php:173
key S undefined is about to take test!! index_tab.php:176
key S undefined is pressed passes the test!! index_tab.php:181
key undefined is pressed!! index_tab.php:173 //here backspace was pressed
key undefined is about to take test!! index_tab.php:176
key undefined is failed!!
答案 0 :(得分:7)
简而言之,JavaScript 区分大小写。
e.keycode != e.keyCode
。
而且,您应该使用camelCase'd one - e.keyCode
假设$
符号是jQuery,我建议您在查找代码时使用e.which
。它已被规范化为与每个浏览器兼容。
请参阅此处:http://api.jquery.com/event.which/,基本上in source is:
// Add which for key events
if ( event.which == null ) {
event.which = original.charCode != null ? original.charCode : original.keyCode;
}