1

我的 ASP.NET MVC 页面上有关闭按钮。我编写了以下代码以返回上一页。它在 IE9 中运行良好,但在 IE8 中抛出错误。

 $('#Close').click(function () {
          window.location.href= '@Request.UrlReferrer';

        });

感谢您的回复。

谢谢

4

1 回答 1

2

HTTP 规范不需要Referer,因此您不能真正依赖它。你可以使用这个

$('#Close').click(function () {
  window.history.back();
});
于 2013-11-07T22:32:29.103 回答