确定, 所以我正在使用wordpress联系表7,我在那里添加了一些radiobuttons。代码看起来像这样
[radio radio-681 id:radio1 "1" "2" "3"]
当我使用该形式的下拉列表时,它们看起来像这样
[select* three id:three include_blank class:contactForm "2" "3" "4"]
我可以像这样在jquery中调用它
$('#three').change(function() {
if ($("#three").val() == "3") {
//do something
}
});
现在我的问题是,如何检查是否检查了无线电按钮?
编辑:谢谢大家现在的快速反应。
答案 0 :(得分:0)
试试这个:
if($('#radio_button').is(':checked'))
{
// do your stuff
}
答案 1 :(得分:0)
这样做:
if($("#three").attr('checked') === 'checked' )
{
//Do something
}
希望这有帮助。
答案 2 :(得分:0)
$('#yourRadioButton').is(':checked')
或
$('.setOfRadioButtons:checked').val()
答案 3 :(得分:0)
这样的事情:
if($('#three').is(':checked')) { alert("it's checked"); }