项目要求一个是都是 一个否都否

$(".jindu").change(function(){
if($(this).val()=="是"){
$(".jindu").each(function(){
$(this).find("option:contains('是')").prop("selected",true);
});
}else{
$(".jindu").each(function(){
$(this).find("option:contains('否')").prop("selected",true);
});
}
});
浙公网安备 33010602011771号