$("form").submit(function() {
var submitme =true;
$(':radio').each(function() { // loop through each radio button
nam = $(this).attr('name'); // get the name of its set
if (submitme &&!$(':radio[name="'+nam+'"]:checked').length) {
// see if any button in the set is checked
alert(nam+' group not checked');
submitme =false;
}
});
return submitme; // cancel the form submit
});
二、如果表单用的 Ajax 提交的话,我们还需要修改一下:
把提交按钮 type 由 submit 改成 button 类型,然后加一个 id="submit"。