有这样的一个需求:对于一组checkbox,当点击每个checkbox后,把当前处于选中状态的checkbox的某个属性值取出来连接成字符串,并以逗号分开。
html部分:
<input type="checkbox" id="1"/><label for="1">选项一</label><br/><input type="checkbox" id="2"/><label for="2">选项二</label><br /><input type="checkbox" id="3"/><label for="3">选项三</label><br/><span id="result"></span>
jQuery部分,给每个checkbox定义点击事件,遍历所有选中的checkbox。
$(function() {$("input[type=checkbox]").on("click", function () {var vIds = "";$("input:checked").each(function() {
vIds += $(this).attr('id') + ",";});if (vIds.length > 0) {
vIds = vIds.substring(0, vIds.length - 1);}$('#result').text(vIds);});});