根据name取
<input type="radio" value="0" name="city">

$("input[name=city]").bind('click', function(){

});

其他取法
orderlist为input上层的id
取得checkbox选取的数量$("#orderlist input[type='checkbox']:checked").size();

$("#orderlist input[type='checkbox']").bind('click', function(){
	var size = $("#orderlist input[type='checkbox']:checked").size();
	$("#money").text(Math.round(((size - 1) * fee)*100)/100);
});
//或者mycheckbox为checkbox的name
$("#orderlist input[name='mycheckbox']").bind('click', function(){