[removed].href not working on IE

前端 未结 4 1896
陌清茗
陌清茗 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:21

    The problem is likely due to the value of your variables. If they contain special or invalid characters, those needs to be passed through encodeURIComponent before being assigned to window.location.href.

提交回复
热议问题