使用ruby,sinatra和postgres我使用getJSON调用生成了一个表,如下所示:
<tr><td><input type="checkbox" class="case" id=" + this["id"] + "> etc.
现在我希望能够提取已选中复选框的ID,这证明很麻烦。
以下方法均无法正常工作且ID始终为“未定义”。我需要收集ID然后将它们与其他内容一起打入数据库。 jquery是:
$(document).ready(function() {
$(".add").click(function() {
alert("clicked");
//$(".content").delegate('tr > td:first-child > input:checked').each(function() {
$(".content").delegate('.case').each(function() {
//var id = $(".content").delegate('tr > td:first-child > input:checked').val();
var id = $(this).attr('id');
alert('this is the id: ' + id);
});
});
});
你会推荐什么?非常感谢。