如何在jQuery中單擊按鈕時檢查複選框的屬性ID。Jquery複選框checked按鈕點擊獲取attr id
我有複選框的屬性id和一個按鈕,當我檢查複選框2,然後單擊按鈕我應該得到屬性id 2等。
HTML代碼
<div id="checkboxlist">
<div><input type="checkbox" id="1" class="chk"> Value 1</div>
<div><input type="checkbox" id="2" class="chk"> Value 2</div>
<div><input type="checkbox" id="3" class="chk"> Value 3</div>
<div><input type="checkbox" id="4" class="chk"> Value 4</div>
<div><input type="checkbox" id="5" class="chk"> Value 5</div>
<div>
<input type="button" value="button" id="buttonClass">
</div>
</div>
http://jsfiddle.net/3u6e7qn7/ – Omidam81