$(document).on("click",".gbut",function(){
console.log(this.getAttribute("data-X"));
每个按钮都有一个data-x
属性,我需要能够获取被单击的按钮。使用function(this)
不起作用,使用console.log($(this).getAttribute("data-X"));
不起作用。我进行了很多搜索,但没有使用on("click","class",function()
...