使用@Ajax.ActionLink弹出表单

发布于 2025-01-06 00:28:36 字数 991 浏览 1 评论 0原文

我想使用 @Ajax.ActionLink 弹出一个表单,所以我在我的 cshtml 页面中执行了此操作:

   @Ajax.ActionLink("click ", "AddToMembers", new AjaxOptions { HttpMethod = "GET", UpdateTargetId = "result", InsertionMode = InsertionMode.Replace, OnSuccess = "openPopup" })
   <div id="result" style="display:none;"></div>

并添加此脚本:

      <script type="text/javascript">
          $(document).ready(function () {
              $("#result").dialog({
                  autoOpen: false,
                  title: 'Title',
                  width: 500,
                  height: 'auto',
                  modal: true
              });
          });
          function openPopup() {
              $("#result").dialog("open");
          }
</script>

在我的控制器中添加了此功能:

 [HttpGet]
    public PartialViewResult AddToMembers()
    {
        return PartialView();
    }

但是当我单击表单中的“单击”时,新页面将在其中打开浏览器。不在我的弹出表单中 有什么问题吗???

i want to use @Ajax.ActionLink to popup a form so i did this in my cshtml page :

   @Ajax.ActionLink("click ", "AddToMembers", new AjaxOptions { HttpMethod = "GET", UpdateTargetId = "result", InsertionMode = InsertionMode.Replace, OnSuccess = "openPopup" })
   <div id="result" style="display:none;"></div>

and add this script :

      <script type="text/javascript">
          $(document).ready(function () {
              $("#result").dialog({
                  autoOpen: false,
                  title: 'Title',
                  width: 500,
                  height: 'auto',
                  modal: true
              });
          });
          function openPopup() {
              $("#result").dialog("open");
          }
</script>

in my controller added this function :

 [HttpGet]
    public PartialViewResult AddToMembers()
    {
        return PartialView();
    }

but when i click on the "click" in my form the new page open in the browser . not in the my popup form
what's the problem ???

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

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

发布评论

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

评论(1

帅哥哥的热头脑 2025-01-13 00:28:36

我怀疑您忘记在页面中包含以下脚本:

<script src="@Url.Content("~/Scripts/jquery.unobtrusive-ajax.js")" type="text/javascript"></script>

此脚本用于 AJAX 化由 Ajax.ActionLink 帮助器生成的锚点。另外,如果您正在使用 jQuery 对话框,请确保您已引用 jQuery UI:

<script src="@Url.Content("~/Scripts/jquery-ui-1.8.11.js")" type="text/javascript"></script>

I suspect that you forgot to include the following script to your page:

<script src="@Url.Content("~/Scripts/jquery.unobtrusive-ajax.js")" type="text/javascript"></script>

This script is used to AJAXify the anchor generated by the Ajax.ActionLink helper. Also sinde you are using jQuery dialog make sure you have referenced jQuery UI:

<script src="@Url.Content("~/Scripts/jquery-ui-1.8.11.js")" type="text/javascript"></script>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文