<div id="block"> <input type="radio" name="a" value="1">1 <input type="radio" name="a" value="2">2 <input type="radio" name="a" value="3">3 </div>
document.getElementById("block").addEventListener("click",function(e){ if(e.target.tagName=="INPUT"){ console.log("radiovalue",e.target.value) } })