检查单选按钮时如何知道?

时间:2013-09-20 20:49:10

标签: javascript jquery html radio-button icheck

我正在制作一个应用程序,当点击某个div时使用jQuery.icheck显示单选按钮,我想在选中其中一个按钮时采取某种操作,我正在使用icheck网站但没有得到我正在使用的代码:

var itemoptions=[],optionstring='', oi=0;

for(oi=0;oi<=oc-1;oi++) {
  itemoptions[oi]=$('menu').find($(".selected").text()).children().eq(si).children().eq(oi).prop('nodeName');
  optionstring=optionstring+'<input type="radio" name="iCheck"><p style="line-height:10px; font-size:15px;">'+(itemoptions[oi]).toString()+'</p>'
}

$('.item_block').on('click',function(){
$('input').iCheck('check');    // here's the line of code that is supposed to be used to check all of he icheck radio buttons 
$(this).addClass('flipped_item');
  $(this).flip({                              //flipping options
  direction:'lr',
  speed:250,
  content:"<div class='option_wrapper'>"+optionstring+"</div>",
  onEnd:function(){$('input').iCheck({
    checkboxClass: 'icheckbox_flat-yellow',
    radioClass: 'iradio_flat-yellow'
  });
})

2 个答案:

答案 0 :(得分:0)

使用

的document.getElementById( “CHECK1”)。选中=真

声明

答案 1 :(得分:0)

如果我理解正确,并且您只想在选中或取消选中该单选按钮时执行操作,则可以将其绑定到更改事件。

$(this).flip({                         //flipping options
    direction:  'lr',
    speed:      250,
    content:    "<div class='option_wrapper'>"+optionstring+"</div>",
    onEnd:      function() {
                    $('input').iCheck({
                        checkboxClass: 'icheckbox_flat-yellow',
                        radioClass: 'iradio_flat-yellow'
                    });
                    $('input').change(function() {
                        if ($(this).is(':checked'))
                            // Do Stuff
                        else
                            // Do other stuff
                    });
                }
});