如何将选定的电台(从电台组)复制到另一个电台?
这是我的jsfiddle:http://jsfiddle.net/fu3oyscq/1/

这是我的jQuery

$("#copy input[name='copyOne']:checked").val(  $("#original input[name='selectOne']:checked").val()  )

最佳答案

这将满足您的要求:

$("#original input").change(function () {
    var index = $(this).index();
    $("#copy input[name='copyOne']")[index].checked = true;
});


选择原始收音机之一时会触发。它检索原始元素的索引。选择匹配的复制索引并通过属性checked对其进行检查。

http://jsfiddle.net/fu3oyscq/5/

关于javascript - 将选定的电台复制到另一个电台,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28280414/

10-09 14:17