📅  最后修改于: 2022-03-11 15:03:24.388000             🧑  作者: Mango
jQuery(document).ready(function() {
jQuery("#carm3").change(function() {
if (jQuery(this).val() === 'other'){
jQuery('input[name=other_interest]').show();
} else {
jQuery('input[name=other_interest]').hide();
}
});
});