Jump to content
Fórum Script Brasil
  • 0

[Javascript]window.location não funciona


faraujo1

Question

Estou tendo um problema com o código abaixo, preciso que abra um link na mesma janela de acordo com a cidade(ex. cidade tal vai pra pagina tal).

Tentei com o window.location porém ele simplesmente não funciona. Se eu colocar um 'alert('');' na linha de baixo o código funciona., tentei colocar um return true ou false, mas não funciona apenas com o alert, alguém faz ideia do que pode estar acontecendo ?

<script type="text/javascript">
    function checacidade(){
        var cidade=document.getElementById('cidade').value;
        
        if(cidade == 'Brasilia'){    
            
            window.location = "http://www.google.com";
            //alert('');
        }else{
            open('http://www.globo.com');
        }
    }
</script>
<select name="cidade" id="cidade"></select><br /><br />
<input type="image" src="img/btn_ok.png" onclick="checacidade();" />

Se alguém tiver alguma sugestão agradeço!

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

Consegui resolver.

substitui window.location por location.href.

e no input coloquei um return false.

ficou assim o código:

&lt;script>
function checacidade(){
        var cidade=document.getElementById('cidade').value;
        
        if(cidade == 'Brasilia'){    
            location.href = 'http://www.google.com';
        }else{
            location.href = 'http://www.globo.com';
        }
    }
</script>
e o html :
<input type="image" src="img/btn_ok.png" onclick="checacidade();return false" />

:lol:

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...