我在所有浏览器中都使用location.assign(url)
方法,除了正确执行firefox URL重定向。
在Firefox中,它会读取URL并删除附加到URL的参数。
url = "http://stackoverflow.com/questions/ask?at=87657741&language=en"
传递给location.assign(url)
或location = url
或window.location.href= url..
但在Firefox中,将整个网址转换为http://stackoverflow.com/questions/ask
并刷新页面。
此链接是在点击下拉项目时生成的。
我在这里做错了什么。