我想要得到一個使用javascript或jquery的div中包含的所有單選按鈕的列表。如何獲得包含在一個div中的單選按鈕的ID
例如
<div id="container">
<input type="radio" id="1">
<input type="radio" id="2">
<input type="radio" id="3">
.... //total no of radio buttons are not known
</div>
我想含有包含在DIV所有單選按鈕的ID的數組。
arr[0]="1"
arr[1]="2"
arr[2]="3"
...
..
http://api.jquery.com/map/中的第一個示例完成了您所要求的操作,您只需要適當地更改選擇器即可。 – 2010-07-22 06:28:38