如何获得价值.这没用.
this.attr('data-ref');
有任何想法吗,
奇妙
此外,您可能会发现使用jQuery对象更容易:
$(this).attr('data-ref');
JS Fiddle demo.
实际上,问题似乎是你没有使用jQuery对象:
Can’t work
另一方面,要使用DOM检索data- *属性,您可以选择:
this.getAttribute('data-ref');
要么:
this.dataset.ref;
this.dataset['ref'];