pasa que lo haces con serialize() que genera una cadena con name/value
lo que tienes que haces es buscar los que estan seleccionados y recuperar el valor
Código HTML:
<html>
<head>
<title>Ejemplo</title>
<script src="jquery.js" type="text/javascript"></script>
<script type="text/javascript">
$( function (){
$('a').click( function () {
$("input:checked").each( function () {
alert ( $(this).val() );
});
});
});
</script>
</head>
<body>
<input type="checkbox" name="asd" value="1" />
<input type="checkbox" name="asd" checked value="2" />
<input type="checkbox" name="asd" value="3" />
<a href="#">ver</a>
</body>
</html>