📅  最后修改于: 2022-03-11 15:01:08.140000             🧑  作者: Mango
$(function()
{
$('select.country_d').change(function()
{
if ($(this).val() == 'Europe')
$('.state_d').replaceWith('');
});
$('select.country_o').change(function(){
if($(this).val() == 'Europe')
$('.state_o').replaceWith('');
});
}
);