最近有人给了我这个代码来解决我的单选按钮问题,它工作得很好但是我怎样才能排除更多的单选按钮组?
我还想排除“lunch_fruitjuice”以及“lunch_desserts”
$(function(){
// cache the selector for all target radio buttons for later use
var targetRadioButtons = $("input:radio").not("input:radio[name=lunch_desserts]");
targetRadioButtons.change(function(){
var currentGroupName = $(this).prop("name");
// remove selected state from other items
targetRadioButtons.not(this).prop('checked', false);
});
})
谢谢