0

使用 window.location.href 时出现问题。它在 IE9 和 IE10 中运行良好。但是当我在 IE8 中测试它时,它会将我重定向到另一个页面。它假设下载一个文件。请帮我解决这个问题。谢谢。

这是我的代码:

ScriptManager.RegisterStartupScript(this, this.GetType(), "key:" + DateTime.Now.ToString(), "window.location.replace('Document.aspx?table=TV_IMAGES');", true);

我还尝试使用 window.location、document.location,使其成为一个函数并使用会话超时。但这些都不起作用。

4

2 回答 2

0

您可以window.location = 'http://demo.org/#anchor';
根据您的要求使用更改..希望这会帮助您

于 2013-09-02T11:45:02.147 回答
0

尝试

Window.location.href= 'Document.aspx?table=TV_IMAGES' 

而不是替换功能

于 2013-09-02T11:45:33.483 回答