0

我希望通过正则表达式监视字符。

$('#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!! 
4

1 回答 1

7

简而言之,JavaScript区分大小写。

e.keycode != e.keyCode.

而且,你应该使用camelCase 'd one -e.keyCode

假设$标志是 jQuery,我建议您e.which在查找代码时使用。它已被规范化以与每个浏览器兼容。

见这里:http ://api.jquery.com/event.which/ ,基本上在源代码是

// Add which for key events
if ( event.which == null ) {
    event.which = original.charCode != null ? original.charCode : original.keyCode;
}
于 2013-03-22T09:05:07.727 回答