ASP.NET MVC3.0 使用 J 脚本将部分视图作为弹出窗口打开

发布于 2024-12-17 21:52:11 字数 72 浏览 1 评论 0原文

我是 ASP.NET MVC 3.0 的新手,尝试使用 Jscript/AJAX 弹出部分视图。任何帮助表示赞赏。 谢谢, 斯里尼

I am new to the ASP.NET MVC 3.0, trying to popup partial view using Jscript/AJAX. Any help is appreciated.
Thanks,
Srini

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

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

发布评论

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

评论(2

情泪▽动烟 2024-12-24 21:52:11

您可以使用 javascript 或 jquery 启动弹出窗口。然后弹出窗口指向控制器/视图,以便视图显示在弹出窗口中。如果你用谷歌打开一个弹出窗口,你会发现很多资源。它是一个客户端操作,因此与 mvc 没有太大关系。您只需在弹出窗口中显示您的视图即可。

您可以参阅这篇文章了解如何附加代码启动弹出窗口。这是针对 webforms 的,但是 javascript 仍然适用于 mvc
还有这个SO帖子

You can launch a popup window with either javascript or jquery. The popup then points to controller/view so that view is displayed in the popup. If you google opening a popup you'll find lots of resource. Its a client side action so really does not have much to do with mvc. You'll just show your view inthe popup.

You can see this article on how to attach code to launch a popup. This is for webforms but the javascript is still applicable for mvc
Also this SO post

那一片橙海, 2024-12-24 21:52:11

假设您创建一个返回部分视图的控制器操作,如下所示:

 public ActionResul get_partial_view()
 {
      ....some logic
      return PartialView("partial_view_name");
 }

然后在您希望弹出窗口出现的视图中,您可以使用一些 jquery 来加载将包含弹出窗口内容的 dom 元素,如下所示:

 $.get('/controller_name/get_partial_view', function(html) {  
      $('#popup-content').html = html;  
 });

Let's say you create a controller action that returns your partial view, something like this:

 public ActionResul get_partial_view()
 {
      ....some logic
      return PartialView("partial_view_name");
 }

Then in your view where you would like the popup to appear you could use some jquery to load the dom element that will contain the content of the popup window like so:

 $.get('/controller_name/get_partial_view', function(html) {  
      $('#popup-content').html = html;  
 });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文