我有一个表渲染一堆div,我需要编辑其中一个div。我使用partialview来更新并将partialview的输出注入到原始div中。一切正常,除了..注入后,局部视图中的链接都不起作用。任何一方(上方和下方)工作正常,只更新一个。
我已经使用Chrome / Inspect来查看div(dvthisresponse),这没关系。只是其中的链接(hrefs)永远不会再次发射。
$(".saveresponseedit").click(function (e) {
e.preventDefault();
...
$.ajax({
url: '/spaces/saveresponse',
data: formData,
enctype: 'multipart/form-data',
type: 'POST',
cache: false,
contentType: false,
processData: false,
success: function (response) {
$('#dvthisresponse' + @Model.id).html('');
$('#dvthisresponse' + @Model.id).html(response);
},
error: function (req, status, err) {
$("div#spinner").fadeOut("fast");
$('#modalerror .modal-body p').html(err);
$('#modalerror').find('.modal').modal({
show: true
});
}
});
//return false;
});
有什么想法吗?把头发拉出来。 谢谢