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

Categories

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

JavaScript: click event for same class name

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

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

1 Answer

0 votes
by (71.8m points)

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>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...