jQuery获取checkbox选中的值

Posted odejsjhshw

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery获取checkbox选中的值相关的知识,希望对你有一定的参考价值。

jQuery获取checkbox选中的值

 

1、问题背景

     有几个多选框,选择其中的几个,获取选中的值

 

2、设计源码

 

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>jQuery获取checkbox选中的值</title>
<script type="text/javascript" src="jquery-2.2.0.js"></script>
<script type="text/javascript">
    $(function(){
		$("input[name=‘ckb‘]:checkbox").click(function() {
			var str = "";
			$("input[name=‘ckb‘]:checkbox").each(function() {
            	if($(this).is(":checked"))
				{
					str += $(this).attr("value")+",";
				}
       		});
			if(str != null && str.length > 1)
			{
				str = str.substring(0,str.length-1);	
			}
			
			alert(str);
		});
		
	});
</script>
</head>

<body>
   <input type="checkbox" name="ckb" value="1"/>苹果
   <input type="checkbox" name="ckb" value="2"/>橘子
   <input type="checkbox" name="ckb" value="3"/>梨子
   <input type="checkbox" name="ckb" value="4"/>香蕉
</body>
</html>

3、设计结果

技术图片

再分享一下我老师大神的人工智能教程吧。零基础!通俗易懂!风趣幽默!还带黄段子!希望你也加入到我们人工智能的队伍中来!https://blog.csdn.net/jiangjunshow



以上是关于jQuery获取checkbox选中的值的主要内容,如果未能解决你的问题,请参考以下文章

JQuery 获取checkbox被选中的值

jQuery获取 input checkbox 被选中的值

jQuery获取checkbox选中的值

jQuery获取checkbox选中的值

jquery获取复选框checkbox的值

jquery 获取一组 checkbox 没被选中的值