[removed].href not working

前端 未结 4 1317
耶瑟儿~
耶瑟儿~ 2020-12-03 14:22

My website is http://www.collegeanswerz.com/. I\'m using rails. The code is for searching for colleges. I want the user to be able to type in the colleges name, click ent

相关标签:
4条回答
  • 2020-12-03 14:51

    Try this

    `var url = "http://stackoverflow.com";    
    $(location).attr('href',url);`
    

    Or you can do something like this

    // similar behavior as an HTTP redirect
    window.location.replace("http://stackoverflow.com");
    
    // similar behavior as clicking on a link
    window.location.href = "http://stackoverflow.com";
    

    and add a return false at the end of your function call

    0 讨论(0)
  • 2020-12-03 14:51

    Please check you are using // not \\ by-mistake , like below

    Wrong:"http:\\stackoverflow.com"
    
    Right:"http://stackoverflow.com"
    
    0 讨论(0)
  • 2020-12-03 14:54

    The browser is still submitting the form after your code runs.

    Add return false; to the handler to prevent that.

    0 讨论(0)
  • 2020-12-03 14:59

    if anyone faced problem even after using return false; . then use the below.

    setTimeout(function(){document.location.href = "index.php"},500);
    
    0 讨论(0)
提交回复
热议问题