// 已选列表checkbox
$(".choised_list_table th input").click(function(){
if($(this).attr('checked') == "checked"){
// 选中
$(this).parents("table").find("td input").attr("checked","checked");
}else{
// 取消
$(this).parents("table").find("td input").removeAttr("checked");
}
});