jQuery获取checkbox选中的值
2018-07-20 来源:open-open
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、设计结果
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点!
本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。
最新资讯
热门推荐