checkbox组点击事件

$.each(arrayAllSjyd, function(indexAll, itemAll){
	var chkFlg = "0";
	$.each(arraySjydSel, function(indexSel, itemSel){
		if(itemAll.split("/")[0] == itemSel.split(" ")[0]){
			result_sjyd += '<label style="margin-right: 5%"><input checked name="checkboxYdlx" type="checkbox" value="' + itemAll + '">' + '<font size="1">' + itemAll.split("/")[1] + '</font>'+ '</label>';
			chkFlg = "1";
		}
	})
	if(chkFlg == "0"){
		result_sjyd += '<label style="margin-right: 5%"><input name="checkboxYdlx" type="checkbox" value="' + itemAll + '">' + '<font size="1">' + itemAll.split("/")[1] + '</font>'+ '</label>';
	}
	if((indexAll+1) % 5 == 0){
		result += '<br>'
	}
});
$("#text_sjyd").html(result_sjyd);
	
<div class="form-group" style="display:none" id="ydfj">
	<label class="control-label col-md-2"> 疑点附件: </label>
	<div class="col-md-9">
		<div class="input-icon right">
			<button id="btn_dgContent_record" class="btn blue">
				添加
			</button>
		</div>
	</div>
</div>


$("input[name='checkboxYdlx']").live('change', function(e){
	var chklen = $("input:checkbox[name='checkboxYdlx']:checked").length;
	if(chklen > 0 ){
		 //document.getElementById("ydfj").style.visibility="visible";
                 document.getElementById("ydfj").style.display="block";
	}else{
		 //document.getElementById("ydfj").style.visibility="hidden";
                 document.getElementById("ydfj").style.display="none";
	}
});
posted @   ^sun^  阅读(573)  评论(0编辑  收藏  举报
编辑推荐:
· .NET 9 new features-C#13新的锁类型和语义
· Linux系统下SQL Server数据库镜像配置全流程详解
· 现代计算机视觉入门之:什么是视频
· 你所不知道的 C/C++ 宏知识
· 聊一聊 操作系统蓝屏 c0000102 的故障分析
阅读排行:
· 不到万不得已,千万不要去外包
· C# WebAPI 插件热插拔(持续更新中)
· 会议真的有必要吗?我们产品开发9年了,但从来没开过会
· 如何打造一个高并发系统?
· 《SpringBoot》EasyExcel实现百万数据的导入导出
点击右上角即可分享
微信分享提示