如何在MVC Dot Net中的bootstrap模式中渲染局部视图?

时间:2014-03-19 18:59:18

标签: javascript jquery asp.net-mvc asp.net-mvc-4 twitter-bootstrap

我正在尝试在Bootstrap模式中执行编辑。我有一个锚标记

<a href="@Url.Action("EditProductCategory")" data-toggle="modal" data-target="#myModal">

第一次点击它时,它会进入Action Method并正常工作

public ActionResult EditProductCategory(string tempData)
    {
        if (Request.IsAjaxRequest())
        {
            CategoryModel model = new CategoryModel { CategoryName = "Temp", Description = "Hello Temp" };
            return PartialView("_EditCategory",model);
        }
        return View();
    }

但是当我关闭Modal然后再次点击链接时它不会转到动作方法,而只是打开模态。我知道这与某些事情有关 PreventDefault()方法。但我是Jquery的新手,所以我无法理解如何让它发挥作用。


如何制作链接,因为它应该转到操作并在每次点击时打开模型

0 个答案:

没有答案