吴峰的博客

 方法一:

if ($("#checkbox-id").get(0).checked) {

    // do something

}

方法二:

if($('#checkbox-id').is(':checked')) {

    // do something

}

方法三:

if ($('#checkbox-id').attr('checked')) {

    // do something

}

 function checkInfo(){

  $("input[name='org3.otherValues']").each(

   function(){

   if($(this).get(0).checked){

   return true;

    }

   });

  var org3_ids=$("#org3_ids").val();

  if(org3_ids!=''){

   return true;

  }

  alertMsg.warn("请选择接收人!");

  return false;

 }

Tags:
评论 (0)
    说点什么吧... (取消回复)

    正在加载验证码......

    请先拖动验证码到相应位置

Copyright 吴峰的博客 © 2014-2016 管理员邮箱:phpwufeng@163.com   统计:   ICP备案:鲁ICP备16004939号-1