집 > Q&A > 본문
请问a标签onlick事件获取当前data-name
三叔2016-11-09 13:33:40
获取属性 - attr()jQuery attr() 方法用于获取属性值。
$('#toy').attr('data-name');
代言2016-11-09 13:33:26
$(this).attr('data-name');
三叔2016-11-09 13:33:14
绑定事件的时候把this传进去,onclick="choose(this)"
function choose(x){ alert(x.getAttribute("data-name")) }