单击链接时,应删除其自己的父级。这是我正在使用的代码。它不起作用。
(function () {
$(".delete-field").on("click", function () {
var elementId = $(this).closest("[id^=field-]").attr("id");
var fieldId = elementId.split("-")[1];
$.ajax({
url: "schema/objects/field/delete",
type: 'DELETE',
data: JSON.stringify({ id: fieldId }),
contentType:'application/json',
success: function (result) {
$(this).closest("tr").remove();
},
error: function (result) {
alert(result);
}
});
});
})();