我想遍歷複選框組'locationthemes'並構建一個包含所有選定值的字符串。當複選框2和4被選爲 那麼結果將是:「3,8」使用jQuery獲取所選複選框的值
<input type="checkbox" name="locationthemes" id="checkbox-1" value="2" class="custom" />
<label for="checkbox-1">Castle</label>
<input type="checkbox" name="locationthemes" id="checkbox-2" value="3" class="custom" />
<label for="checkbox-2">Barn</label>
<input type="checkbox" name="locationthemes" id="checkbox-3" value="5" class="custom" />
<label for="checkbox-3">Restaurant</label>
<input type="checkbox" name="locationthemes" id="checkbox-4" value="8" class="custom" />
<label for="checkbox-4">Bar</label>
我曾經到過這裏:http://api.jquery.com/checked-selector/但有沒有例子,如何選擇由它的名字checkboxgroup。
我該怎麼做?
你,我的朋友,是一個拯救生命的人。 – Haring10
尤其我喜歡使用控制檯日誌的想法。感謝那。 –