我有这样的东西
<div id="list">
<form>
<div id="first">
<label><input type="checkbox" value="third"> third</label>
<label><input type="checkbox" value="fourth"> fourth</label>
</div>
<div id="second">
<label><input type="checkbox" value="first"> first</label>
<label><input type="checkbox" value="second"> second</label>
</div>
<div id="fake-list-sorted-alphabetically">
<label><input type="checkbox" value="first"> first</label>
<label><input type="checkbox" value="second"> second</label>
<label><input type="checkbox" value="third"> first</label>
<label><input type="checkbox" value="fourth"> second</label>
</div>
</form>
</div>
是否可以使用 $.ajax 仅序列化 div#first、div#second 中的复选框值并忽略 #fake 中的所有内容?现在我只是在做一个 $('#fake').html(""); 就在我提交之前,但这感觉很糟糕。我在表单之外没有#fake 的原因是因为我需要它显示在与#first 和#second 相同的容器中,作为查看所有功能的一部分