标签: html user-interface select button radio
当我点击一个单选按钮时,我可以自动选择另一个?
示例:http://www.eharmony.com/online/
我是一个男人而且我正在寻找寻找男性的女性或女性
答案 0 :(得分:0)
使用jQuery:
jQuery(function($) { $('#myRadio').on('change', function() { if($(this).is(':checked')) { $('#myOtherRadio').prop('checked', true); } }); });