[removed].href not working on IE

前端 未结 4 1894
陌清茗
陌清茗 2020-12-10 17:23

I have a problem with window.location.href.

I\'m trying to redirect to a page with the following code:

window.location.href = \"juego.html\"+\'?modo         


        
4条回答
  •  失恋的感觉
    2020-12-10 18:11

    Try window.location.replace(...) instead.

    Refer this question for information:

    How to redirect to another webpage in JavaScript/jQuery?

提交回复
热议问题