Я хочу удалить ненавязчивую привязку Microsoft Ajax @ Ajax.ActionLink после щелчка.
как то так:
.cshtml:
@Ajax.ActionLink("Edit", "EditDeliveryZones", new { idConnection = ViewBag.idConnection }, new AjaxOptions() { UpdateTargetId = "EditDeliveryZones" }, new { @class = "ajaxdialogopen" })
JavaScript:
$('.ajaxdialogopen').one('click', function (event) {
$(this).off('click'); // THIS DOESNT WORK
this.onclick = null; // THIS DOESN't WORK EITHER
}
Спасибо!