我想知道是否有新人如何自动推进无线电输入?基本上检查一个无线电,然后检查间隔等中的下一个。
这真是踢我的屁股。这是我到目前为止所拥有的。
$("#image_box > :input:gt(0)").attr("checked",true);
setInterval(function() {
$("#image_box > :input:first")
.next()
.end()
.append().attr("checked",true);
}, 3000);
答案 0 :(得分:2)
试试这个。它每秒都会检查下一个收音机。
var $radios = $('input[type=radio]');
$radios.each(function(i, e) {
setTimeout(function(){
$(e).prop('checked', true);
}, 1000 * i);
});