嘿,我想知道如何獲取複選框的ID時,它被檢查。獲取複選框的ID? - jQuery
這是我的HTML可能會像起初:
<div class="check_filter">
<div id="filter">
<input type="checkbox" id="check1" /><label for="check1">Marketing</label>
<input type="checkbox" id="check2" /><label for="check2">Automotive</label>
<input type="checkbox" id="check3" /><label for="check3">Sports</label>
</div>
</div><!-- End check_filter -->
我假設了jQuery會是這個樣子:
$(document).ready(function() {
$(":checkbox").click(function(){
var id = $(this).attr('id');
$.post("index.php", { id: id });
//return false to ensure the page doesn't refresh
return false;
});
});
我試圖讓檢查item id,然後在mysql查詢中發佈該id以從數據庫中獲取id的結果。
感謝您的任何幫助。
我會使用'change'事件而不是'click'事件複選框。否則,它看起來像你的代碼應該工作得很好。你試過了,發現它沒有? – 2010-07-29 15:09:57