我有一组名为“periodType”的单选按钮。该组中有一个单选按钮,其行为方式与其他单选按钮相同,只是它显示了一个额外的 div。我如何才能知道该特定单选按钮何时被选中,因为下面的更改功能对于组中的所有单选按钮都非常通用:
$('input[name="periodType"]').change(function() {
if(this.checked) {
//do something (for all radio buttons)
//If unique radio button also do this
}
});
<input type="radio" name="periodType" default>
<input type="radio" name="periodType" default>
<input type="radio" name="periodType" default>
<input type="radio" name="periodType" default>