我想知道是否有人新如何自动推进无线电输入?基本上检查一台收音机,然后每隔一段时间检查下一台收音机,等等。
这真的让我很生气。这是我到目前为止所拥有的。
$("#image_box > :input:gt(0)").attr("checked",true);
setInterval(function() {
$("#image_box > :input:first")
.next()
.end()
.append().attr("checked",true);
}, 3000);