请问a标签onlick事件获取当前data-name
拥有18年软件开发和IT教学经验。曾任多家上市公司技术总监、架构师、项目经理、高级软件工程师等职务。 网络人气名人讲师,...
获取属性 - attr()jQuery attr() 方法用于获取属性值。
$('#toy').attr('data-name');
$(this).attr('data-name');
绑定事件的时候把this传进去,onclick="choose(this)"
function choose(x){ alert(x.getAttribute("data-name")) }
获取属性 - attr()jQuery attr() 方法用于获取属性值。
$('#toy').attr('data-name');
$(this).attr('data-name');
绑定事件的时候把this传进去,onclick="choose(this)"