1

单击 radiogroup2 中的收音机时,选定的收音机应与 id 为选定收音机的收音机交换。尝试使用 .clone 进行操作,但可能选择错误

小提琴: http: //jsfiddle.net/DCC66/5几乎正确更新为http://jsfiddle.net/DCC66/6/仍然无法正常工作

$("div.radiogroup2 input[name='domain_ext']").click(function() { //only if a the radio in radiogroup to are clicked take radio and swap with id='radioselected'
    if  ($(this).prop('checked')) {
        $(this).after('#radioselected').add(this);
        $('#radioselected').after(this);
    }
});

我选择了用另一个脚本隐藏的收音机,并用 css 装饰它,收音机的标签是可见的。in the same form i have 3 sections of the same radio group (grouped by name='') when a radio in the div radiogroup2 is selected, i want this radio (label and css) to swap with the radio with the id='无线电选择'

所以。简而言之。

单击 div 中具有“radiogroup2”类的收音机。此收音机与 id 为“selectedradio”的收音机交换

4

0 回答 0