我有这个html:
<img src="http://localhost:82/Clone//images/hosts/Kinx_9843a.jpg" data-name="/images/hosts/K_9843a.jpg" alt="">
我试图得到这个:
$('body').on('click','.hostPic',function(){
console.log($(this).attr('data-name'));
});
每当按下图片时,我都想获取它的 data-name 属性,但它不起作用。undefined
当我尝试检索该属性时,我会收到报告。有什么理由吗?