ここで何をしようとしているのは、クリック機能でテーブルのIDを取得してから、削除ボタンをクリックするとそのIDを取得して削除します。ここあるJquery関数から別のJquery関数に変数を渡す
$("table tr").click(function() {
var id;
$(this).removeClass('table-hover');
$(this).css("background-color", "#4682B4");
id = $(this).find(".id").html();
alert("Are you sure you want to delete data with id = " + id); //using just to check if its getting the id of the row
});
$('.btnDelete').click(function() {
$.ajax({
contentType: 'application/json; charset=utf-8',
dataType: 'json',
type: 'POST',
url: 'EmployeeDelete',
data: JSON.stringify({ id: id }),
success: function (data) {
}
});
});
私が間違って何をやっている
を使用して固定してしまいましたか? –
私はtrのIDを取得してvar idに保存しています –