我在我的局部视图使用Ajax.BeginForm提交数据。
局部视图 - _getCategoryMaster.cs
<div>
@using (Ajax.BeginForm("Submit", "CategoryMasterDataEntry", new AjaxOptions { OnSuccess = "OnDatatSuccess", OnFailure = "OnDataFailure", HttpMethod = "POST" }, new { enctype = "multipart/form-data" }))
{
<div style="float:left;width:100%;">
<hr class="horizontal-line-bottom" />
<div class="form-buttons tab-footer">
<button class="btn btn-md" type="submit" id="saveData" @if (TempData["DisplayAccess"].ToString() == "view") { <text> disabled </text> }>SAVE</button>
</div>
</div>
}
</div>
现在,我试图把这个从我父视图从Jquery的链接的点击事件提交事件
父视图 -
<html>
<head>
<script type="text/javascript">
$(document).on('click', '.getProducts', function (e) {
alert("Start");
$('form#ajaxForm').trigger('submit');
alert("End");
</script>
</head>
<body>
<a id="anchId" href="javascript:void(0);" class="getProducts">
<img src="~/Images/bullets.png" class="bullet-image" />
<span class="menu-text">LinkName</span>
</a>
</body>
</html>
但它不是射击在报送局部视图的事件。 我得到的警报(开始和结束)。 但它没有触发该事件提交。
我在做什么错在这里?