1

jQuery キーボード イベントでアクセント (á、ő、ű、ö など) を検出できるかどうかを知りたいです。

前もって感謝します。

4

3 に答える 3

1

正規表現で試してください...

$('#input').on('keyup', function(){
    var myRegex = /[^a-zA-Z0-9]/;
    var text = $(this).val();
    if(myRegex.test(text)){
        alert('accent detected');
    }
});

このjsFiddleの例を参照してください

ご挨拶...

于 2013-01-29T15:36:34.950 に答える
0

on key press event u can see the ASCII code of the the character using this table of ASCII http://www.asciitable.com/index/extend.gif

于 2013-01-29T15:36:00.537 に答える