Ñ在ASCII中无法识别

时间:2013-06-28 07:20:17

标签: javascript ascii

代码:

$(document).keydown(function(key) {
    switch (parseInt(key.which, 10)) {
        case 65:
            $('img[src*="imgs/A1.png"]').remove();
            break;
        case 83:
            $('img[src*="imgs/S1.png"]').remove();
            break;
        case 68:
            $('img[src*="imgs/D1.png"]').remove();
            break;
        case 70:
            $('img[src*="imgs/F1.png"]').remove();
            break;
        case 74:
            $('img[src*="imgs/J1.png"]').remove();
            break;
        case 75:
            $('img[src*="imgs/K1.png"]').remove();
            break;
        case 165:
            $('img[src*="imgs/Ñ1.png"]').remove();
            break;
        default:
            alert("key not found");
            break;
    }
});

如果用户按下正确的键,我想删除以前添加的图像。它可以正常使用“普通”字母,但不能使用“Ñ”。根据ASCII表,相应的数字是165,但它不起作用(当我按“Ñ”键时,它会提示“未找到键”)。 有任何想法吗?提前谢谢。

1 个答案:

答案 0 :(得分:1)

您的脚本可能在以UTF-8编码的页面中运行,而不是ASCII。并且在任何情况下Ñ都不是有效的ASCII字符。

ASCII是一种7位编码;你可能正在考虑扩展的ASCII编码。

在任何情况下,为什么不通过以下方式替换“未找到密钥”警报:

alert("key not found: " + parseInt(key.which, 10));