IE中的window.location.href无法正常工作

时间:2013-09-02 11:40:04

标签: internet-explorer-8 window.location

使用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,使其成为一个函数并使用会话超时。但这些都不起作用。

2 个答案:

答案 0 :(得分:0)

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

答案 1 :(得分:0)

尝试

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

而不是替换功能