我用append()
方法追加數據,我用remove()
刪除每個元素。但是,我無法刪除列表中的最後一個元素。無法刪除Jquery中最後添加的元素
$(document).ready(function() {
$(".add_cart").click(function() {
var id = this.id;
$(this).prop("disabled", true);
$(this).val("Item Already in Cart");
$.get("cart.php", {
"id": id
}, function (data) {
$("#sam").append("<table class='tables'><tr><td>" + data + "</td><td><input class='remove' id='" + id + "' type='button' value='Remove'></td></tr></table>");
});
$(".tables").click(function() {
$(this).remove()
});
});
});
其中'刪除()'一部分? –
也許你可以使用'$(this).html('');'替換你表中的內容。 –
現在我編輯了刪除部分 – Venktesh