Posted in jQuery onFebruary 07, 2020
本文实例讲述了jQuery实现获取多选框的值。分享给大家供大家参考,具体如下:
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>3water.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>
运行效果
感兴趣的朋友可以使用在线HTML/CSS/JavaScript代码运行工具:http://tools.3water.com/code/HtmlJsRun测试上述代码运行效果。
希望本文所述对大家jQuery程序设计有所帮助。
jQuery实现获取多选框的值示例
- Author -
weixin_37914752声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@