jQuery キーボード イベントでアクセント (á、ő、ű、ö など) を検出できるかどうかを知りたいです。
前もって感謝します。
正規表現で試してください...
$('#input').on('keyup', function(){
var myRegex = /[^a-zA-Z0-9]/;
var text = $(this).val();
if(myRegex.test(text)){
alert('accent detected');
}
});
ご挨拶...
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