我正在尝试在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的新手,所以我无法理解如何让它发挥作用。
如何制作链接,因为它应该转到操作并在每次点击时打开模型