jQuery获取多选框的值 jQuery实现获取多选框的值示例
weixin_37914752 人气:0本文实例讲述了jQuery实现获取多选框的值。分享给大家供大家参考,具体如下:
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>www.qb5200.com jQuery获取多选框的值</title> <script src="https://code.jquery.com/jquery-3.1.1.min.js"></script> </head> <body>苹果: <input type="checkbox" name="id" value="aa">香蕉: <input type="checkbox" name="id" value="bb">橘子: <input type="checkbox" name="id" value="cc"> <button id="btn">批量删除</button> </body> <script> $('#btn').click(function () { var id=[]; $("input[name='id']:checked").each(function(){ id.push($(this).val()); }); console.log(id); }); </script> </html>
运行效果
希望本文所述对大家jQuery程序设计有所帮助。
您可能感兴趣的文章:
加载全部内容