1
我有一個JavaScript函數,用正常字符替換特殊字符。特殊字符替換函數
當我鍵入一個時期.
它改爲a
舉例:[email protected]
改爲[email protected]
我在做什麼錯?
function retiraAcento(palavra, obj) {
com_acento = 'áàãâäéèêëíìîïóòõôöúùûüçÁÀÃÂÄÉÈÊËÍÌÎÏÓÒÕÖÔÚÙÛÜÇ';
sem_acento = 'aaaaaeeeeiiiiooooouuuucAAAAAEEEEIIIIOOOOOUUUUC';
nova = '';
for (i = 0; i < palavra.length; i++) {
if (com_acento.search(palavra.substr(i, 1)) >= 0) {
nova += sem_acento.substr(com_acento.search(palavra.substr(i, 1)), 1);
} else {
nova += palavra.substr(i, 1);
}
}
//obj.value = nova.toUpperCase();
obj.value = nova
}
$(document).ready(function() {
$(":input").live('blur', function() {
retiraAcento(this.value, this);
});
});
聲明UTF-8編碼。使用UTF-8編碼。 – 2013-03-27 21:43:23
頁面全部使用UTF-8 – user2112020 2013-03-27 21:43:33
雖然聲明它...'' – xandercoded 2013-03-27 21:43:49