首页 > 问答 > 正文
请问a标签onlick事件获取当前data-name
代言2016-11-12 14:46:59
$(this).attr('data-name');
代言2016-11-12 14:46:52
绑定事件的时候把this传进去,onclick="choose(this)"
function choose(x){ alert(x.getAttribute("data-name")) }