使用jQuery可以通过is(':checked')
方法来判断单选按钮是否被选中。
例如,假设有一个单选按钮组的HTML代码如下:
<input type="radio" name="gender" value="male"> Male
<input type="radio" name="gender" value="female"> Female
可以使用以下代码来判断单选按钮是否被选中:
if ($('input[name="gender"]').is(':checked')) {
console.log("单选按钮被选中");
} else {
console.log("单选按钮未被选中");
}
上述代码会输出"单选按钮被选中"或"单选按钮未被选中",具体取决于单选按钮是否被选中。