Obter id de uma caixa de seleção

Javascript

$(document).ready(function(){
$
(":checkbox").change(function(){
console
.log(this.id, this.checked, this.name);
//$.post("index.php", { id: this.id, checked: this.checked });
});
});

HTML

<input type="checkbox" id="check" name="1" />
<input type="checkbox" id="check" name="2" />
<input type="checkbox" id="check" name="3" />

JSFiddle

http://jsfiddle.net/silvercorp/9snGS/