当我选择现有单选按钮之一时,我需要选择具有类似 unique_id 的单选按钮。这是代码:
$('.test li input:radio').change(function () {
var unique_id = $(this).attr('unique_id');
$('input:radio').each(function () {
if ($(this).attr('unique_id') == unique_id) {
$(this).attr('checked', true);
} else {
$(this).attr('checked', false);
}
});
});
在谷歌浏览器中它正在工作,但并非总是如此。它可能有效,也可能无效。尝试多次选择收音机。在 Mozilla 中它根本不起作用。我是什么做的?