行を含むテーブルがあります。ボタンをクリックすると、その前の行が削除されます。私は、最も近い()関数を使用して行を決定しています。ボタンと同じ行を削除したいと思います。
function DeletClick(id, date) {
var e = window.event; \
if (confirm('Are you sure you want to delete the record from ' + date + '?')) {
DisplayInformation.Delete(id,
function (result) {
if (result) {
jQuery('#' + e.srcElement.id).closest('tr').remove(); //Delete Row here!
} else {
alert('You Do not have permssion to delete record.');
}
});
}
}