JSFiddle - React, Tailwind, and code Playground
HTML
<div id="result"></div>
<div id="result1"></div>
<input type="radio" name="selector_" value="post_active" id="posts" onclick="dataSelect23123()">Новость<br>
<input type="radio" name="selector_" value="page_active" id="pages" onclick="dataSelect23123()" >Страница
<br /><br />
<label>
<input type="radio" name="selector_1" value="post_active1" id="posts1"onclick="dataSelect23124()" />
Новость
</label><br/>
<label><input type="radio" name="selector_1" value="page_active1" id="pages1" onclick="dataSelect23124()" />Страница</label>
JavaScript
dataSelect23123 =function () {
$( "#result" ).html( $('input[name=selector_]:checked').val() + " is checked!" );
};
dataSelect23124 = function () {
$( "#result1" ).html( $('input[name=selector_1]:checked').val() + " is checked!" );
};