嘿,我想知道当它被检查时如何获取一个复选框的id.
这是我的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; }); });
我正在尝试获取检查的项目ID,然后在mySQL查询中发布该ID以从数据库中获取该ID的结果.
感谢您的任何帮助.