当前位置:Gxlcms > PHP教程 > javascript-请问a标签onlick事件获取当前data-name

javascript-请问a标签onlick事件获取当前data-name

时间:2021-07-01 10:21:17 帮助过:7人阅读

回复内容:

例子代码: http://codepen.io/hj624608494...

问题出现在 this的指向 this永远指向函数执行时的对象.

function choose(){
  alert($(this).data('name'));
  // undefind 因为choose函数的this指向的是window
}

function choose2(){
  $('#J_a').click(function(){
    // 这个点击事件的匿名函数的this 指向的是 $('#J_a') 这个对象
    alert($(this).data('name'));
  })
}
choose2()

绑定事件的时候把this传进去,onclick="choose(this)"

function choose(x){

alert(x.getAttribute("data-name"))

}

$(this).attr('data-name');

获取属性 - attr()
jQuery attr() 方法用于获取属性值。

$('#toy').attr('data-name');

人气教程排行