我有一个 html 元素,想在 OnClick 事件中读取数据属性
<a id="downloadFile" class="btn btn-success" href="javascript:;" data="MyData">Download file</a>
如果我使用下面的代码,请参考 href 属性而不是 A 元素。如何引用A元素并读取数据值?
$('#downloadFile').click(function() {
alert(this.attr('data')); //I get error that 'href' do not has 'data' attribute, this code refers to href attribute and not to A element
});