Jquery 延迟重定向 MVC ASP.Net

发布于 2024-11-08 20:07:26 字数 51 浏览 0 评论 0原文

有谁有示例,如何使用 MVC 重定向到 Jquery 中的新页面?

谢谢

Does anyone has example, How to redirect to a new page in Jquery with MVC?

thank you

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

风吹短裙飘 2024-11-15 20:07:27
window.location = '@Url.Action("action","Controller")';*It gets in the way*
window.location = '@Url.Action("action","Controller")';*It gets in the way*
眉目亦如画i 2024-11-15 20:07:26

就按照达林所说的那样做了。请注意,您可能想要使用相对 uri。最简单的方法是定义一个包含基本 uri 的变量(我在示例中使用 Razor 视图引擎)。

<script type="text/javascript">
    var baseUri = '@Url.Content("~/")';

    function redirect() {
        window.location.href = basUri + 'new/url';
    }
</script>

It's done as Darin says. Note that you might want to use a relative uri. The easiest way is to define a variable that contains the base uri (I'm using Razor view engine in the example).

<script type="text/javascript">
    var baseUri = '@Url.Content("~/")';

    function redirect() {
        window.location.href = basUri + 'new/url';
    }
</script>
初心未许 2024-11-15 20:07:26

你实际上并不需要jquery。可以使用 window.location.href 属性来完成,该属性会将浏览器重定向到给定的 url:

window.location.href = '/new/url';

You don't really need jquery for this. It can be done using the window.location.href property which will redirect the browser to the given url:

window.location.href = '/new/url';
忆梦 2024-11-15 20:07:26

到新页面,执行以下操作:

window.location = 'welcome.php';

to new page, do this:

window.location = 'welcome.php';
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文