//獲取data屬性的幾種方法 var id = this.getAttribute('data-id'); var id = $(this).attr('data-id'); var id = $(this).data('id'); var id = this.dataset["id"];