I have many checkboxs as below,
Coo
Use the .map() function:
$('.Checkbox:checked').map(function() {return this.value;}).get().join(',')
Breaking that down:
$('.Checkbox:checked')
selects the checked checkboxes.
.map(function() {return this.value;})
creates a jQuery object that holds an array containing the values of the checked checkboxes.
.get()
returns the actual array.
.join(',');
joins all of the elements of the array into a string, separated by a comma.
Working DEMO