Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.1k views
in Technique[技术] by (71.8m points)

a标签包住的img,为什么我点击event抓的是img,而不是a

//遍历的a标签
list.forEach(i => {
    html += `<a href="detail.html?id=${i.id}">`
    html += '<div class="retail-item">'
    html += `<img src="${i.icon}">`
    html += `<p class="p1">${i.title}</p>`
    html += `<p class="p2">${i.content}</p>`
    html += '</div>'
    html += '</a>'
})

$("a").click(function(e) {
    event.preventDefault();
    console.log(e);//这里打印的是img p...怎么获取a标签的target

});

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...