2

我想知道是否有人新如何自动推进无线电输入?基本上检查一台收音机,然后每隔一段时间检查下一台收音机,等等。

这真的让我很生气。这是我到目前为止所拥有的。

$("#image_box > :input:gt(0)").attr("checked",true);
    setInterval(function() {
        $("#image_box > :input:first")
            .next()
            .end()
            .append().attr("checked",true);
        },  3000);
4

1 回答 1

3

试试这个。每秒钟它都会检查下一个收音机。

var $radios = $('input[type=radio]');
$radios.each(function(i, e) {
  setTimeout(function(){
    $(e).prop('checked', true);
  }, 1000 * i);
});

演示:http: //jsbin.com/oqubis/1/edit

于 2012-09-14T06:54:04.450 回答