Jquery 延迟重定向 MVC ASP.Net
有谁有示例,如何使用 MVC 重定向到 Jquery 中的新页面?
谢谢
Does anyone has example, How to redirect to a new page in Jquery with MVC?
thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
就按照达林所说的那样做了。请注意,您可能想要使用相对 uri。最简单的方法是定义一个包含基本 uri 的变量(我在示例中使用 Razor 视图引擎)。
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).
你实际上并不需要jquery。可以使用
window.location.href
属性来完成,该属性会将浏览器重定向到给定的 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:到新页面,执行以下操作:
to new page, do this: