//获取data属性的几种方法 var id = this.getAttribute('data-id'); var id = $(this).attr('data-id'); var id = $(this).data('id'); var id = this.dataset["id"];