我正在开发购物车应用程序。我使用jQuery
来获取项目并以表格格式显示它。每个项目表都包含一个删除按钮,可将其从购物车中删除。我已经使用表上的click功能删除了该项目。但是,如果我点击qty
字段,表格也会被移除,因为它在表格内部。我希望在单击表格内的删除按钮时删除表格。
$(document).ready(function(){
$(".add_cart").click(function(){
var id = this.id;
$(this).prop("disabled",true);
$.get("cart.php",{
"id":id
},function(data){
$("#sam").append("<table id='"+id+"' class='tables'><tr><td>"+data+"</td><td><input class='remove' id='"+id+"' type='button' value='Remove'></td></tr></table><br>");
$(".remove").click(function(){
$(table.tables).remove();
$("#"+id).prop("disabled",false);
});
});
});
});
答案 0 :(得分:0)
使用它:
$("table.tables").remove();
答案 1 :(得分:0)
尝试
$(document).ready(function () {
$(".add_cart").click(function () {
var id = this.id;
$(this).prop("disabled", true);
$.get("cart.php", {
"id": id
}, function (data) {
$("#sam").append("<table id='" + id + "' class='tables'><tr><td>" + data + "</td><td><input class='remove' type='button' value='Remove'></td></tr></table><br>");
});
});
//use event delegation
$("#sam").on('click', '.remove', function () {
//get the table which contains the button
var $tbl = $(this).closest('tr').remove();
//get the id of the table instead of the id variable
$("#" + $tbl.attr('id')).prop("disabled", false);
});
});
请注意,元素的ID必须是唯一的,您有一个表和一个具有相同ID的按钮...从按钮中删除ID