我在 jsFiddle 中已经取得了相当大的进展,但我无法弄清楚为什么它没有在第一个值中添加项目符号..
http://jsfiddle.net/dvCmR/128/
<div id="checkboxes">
<input id="chkbx_0" type="checkbox" name="one" />Option 1
<input id="chkbx_1" type="checkbox" name="two" />Option 2
<input id="chkbx_2" type="checkbox" name="three" />Option 3
<input id="chkbx_3" type="checkbox" name="four" />Option 4
</div>
<div class="content"></div>
<script>
$("input").click(function(e) {
var selected = $("#checkboxes input:checked").map(function(i, el) {
return el.name;
}).get();
$('.content').empty();
$(".content").append(selected.join("<li>"));
});
</script>
</p>
谢谢!!!