Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <body>
- <p id="campo_texto">Liga lâmpada, desliga lâmpada, liga TV, desliga TV, liga luz, desliga luz</p>
- <button onclick="myFunction()">Try it</button>
- <p id="demo"></p>
- <script>
- function ligaTV(){
- document.getElementById("demo").innerHTML = "Liga TV";
- }
- function desligaTV(){
- document.getElementById("demo").innerHTML = "Desliga TV";
- }
- function ligaLuz(){
- document.getElementById("demo").innerHTML = "Liga Luz";
- }
- function desligaLuz(){
- document.getElementById("demo").innerHTML = "Desliga Luz";
- }
- function myFunction() {
- var str = document.getElementById("campo_texto").innerHTML;
- str = str.toLowerCase();
- var iLiga = str.lastIndexOf(" liga");
- var iDesliga = str.lastIndexOf("desliga");
- var iTV = str.lastIndexOf("tv");
- var iLuz = str.lastIndexOf("luz");
- if (iLiga > iDesliga){
- if (iTV > iLiga){
- ligaTV();
- }
- else if (iLuz > iLiga){
- ligaLuz();
- }
- }
- else {
- if (iTV > iDesliga){
- desligaTV();
- }
- else if (iLuz > iDesliga){
- desligaLuz();
- }
- }
- document.getElementById("demo").innerHTML = n;
- }
- </script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment