[removed].href not working

前端 未结 4 1324
耶瑟儿~
耶瑟儿~ 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

提交回复
热议问题