Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //textarea translate...
- //Segue a lógica, adicionando mais palavras e suas traduções.
- <html>
- <script type="text/javascript" >
- function translate()
- {
- var word = '\0';
- var sii = document.getElementById("trans").value;
- if ( sii == "eu" )
- {
- word = "me";
- }
- else if ( sii == "você" )
- {
- word = "you";
- }
- else if ( sii == "traduzir" )
- {
- word = "translate";
- }
- else if ( sii == "nome" )
- {
- word = "name";
- }
- else if ( sii == "vida" )
- {
- word = "life";
- }
- else if ( !sii )
- {
- word = "Não foi digitado nada no textbox de tradução..";
- }
- alert(word);
- }
- </script>
- <textarea id="trans" cols="15" rows="4" ></textarea><br>
- <input type="button" value="traduzir" onclick="translate()" />
- </html>
Advertisement
Add Comment
Please, Sign In to add comment