1 回答

TA貢獻(xiàn)1784條經(jīng)驗(yàn) 獲得超2個(gè)贊
您可以像這樣選擇和循環(huán):
$("input[name^='labels']").each(function(index) {
console.log(index + ": " + $(this).val());
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<input type="checkbox" id="label-featured" name="labels[featured]" value="1">
<input type="checkbox" id="label-new" name="labels[new]" value="1">
<input type="checkbox" id="label-old" name="labels[old]" value="1">
<input type="checkbox" id="label-promo" name="labels[promo]" value="1">
選擇器"input[name^='labels']"
將抓取所有<input>
名稱以開頭的元素labels
(因?yàn)?code>^=意思是“開頭為”)。
添加回答
舉報(bào)