Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I've the following code snippet. The issue is onclick event doesn't fire for the second label, which has the same class as the first one. Why is that? I searched online and found multiple solutions but all of them are in jQuery. But I want it in pure JavaScript. Does anyone know what am I doing wrong here?

var label = document.getElementsByClassName('text');
label[0].onclick = function() {
	console.log(true);
};
<label class="text">Hello</label>
<label class="text">World!</label>
See Question&Answers more detail:os

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

1 Answer

You could use event delegation :

document.body.onclick = function (ev) {
  if (ev.target.getAttribute("class") == "text") {
    console.log(true);
  }
};
<label class="text">Hello</label>
<label class="text">World!</label>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...