使用 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);
});
});
});
你会推荐什么?非常感谢。