Traduttore javascript

di il
1 risposte

Traduttore javascript

Salve, vorrei creare un traduttore in html grazie ad una funzione javascript.
Ho già provato a farlo ma non riesco, qualcuno può aiutarmi?

questo è il codice html che ho fattto:

<html>
<head>
<title>traduttore</title>
<meta charset="UTF-8">
<script src="traduttore.js"></script>


</head>
<body>

<input type="text"
id="Traduttore"
/>

<input type="button"
value="Traduci"
id="Traduci"
/>

<input type="text"
id="Lettura"

readonly="readonly"/>
</body>
</html>


questo è il codice javascript:

function Traduci(stringa) {
try {
var stringa = readstring(nodoTraduttore.value);

if ( stringa == "a") {
return("?") ;
}

if (stringa == "b") {
return "?";
}

if (stringa == "c" ) {
return "?" ;
}

if (stringa == "d") {
return "?" ;
}

if (stringa == "e") {
return "?";
}

if (stringa == "f") {
return "?";
}

if (stringa == "g") {
return "?";
}

if (stringa == "h") {
return "?";
}

if (stringa == "i") {
return "?";
}

if (stringa == "l") {
return "?" ;
}

if (stringa == "m") {
return "?";
}

if ( stringa == "n") {
return "?";
}

if (stringa == "o") {
return "?";
}

if (stringa == "p") {
return "?";
}

if (stringa == "q") {
return "?";
}

if (stringa == "r") {
return "?";
}

if (stringa == "s") {
return "?";
}

if (stringa == "t") {
return "?";
}

if (stringa == "u") {
return "?";
}

if (stringa == "v") {
return "?";
}

if (stringa == "z") {
return "?";
}
if (stringa == "j") {
return "?";
}
if (stringa == "k") {
return "?" }
if ( stringa == "w") {
return "?" }
if (stringa == "y") {
return "?";
}

nodoLettura.value = stringa;
} catch (e) {
alert("Traduci " + e);
}
}

var nodoTraduci ;
var nodoLettura;
var nodoTraduttore;


function gestoreLoad () {
try {

nodoTraduttore = document.getElementById("Traduttore");
nodoLettura = document.getElementById("Lettura");
nodoTraduttore.value = "";
nodoLettura.value = "";
nodoTraduci.onclick = Traduci;
} catch ( e ) {
alert("gestoreLoad " + e);
}
}
window.onload = gestoreLoad;

1 Risposte

  • Re: Traduttore javascript

    Non riesco a capire in che senso dovrebbe essere un traduttore, e poi non si legge il codice dei vari return.
    Tralasciando il codice che hai scritto, mi fai capire esattamente che vuoi fare? Un traduttore che traduce cosa in cosa? Forse vuoi fare un interprete?
Devi accedere o registrarti per scrivere nel forum
1 risposte