当我从MVC 5中的AJAX帮助程序调用函数f1
时,我收到了这个错误。
$.fx.speeds._default = 2000;
$(document).ready(function () {
$("#d1").dialog({
autoOpen: false,
width: '800',
height: 'auto',
model: true,
show: 'blind',
hide: 'explode'
});
});
function f1() {
$("#d1").dialog("open");
}
我的AJAX帮助电话:
@Ajax.ActionLink("Delete", "DeletePartial", new { id = item.Id }, new AjaxOptions {
UpdateTargetId ="d1",
LoadingElementId="L1",
InsertionMode=InsertionMode.Replace,
HttpMethod="Get",
OnComplete="f1"
})
我已经正确地提到了AJAX引用和jQueryUI引用,但它仍然无效。