有没有办法优化下面的代码行?
$('#state').children('option:not(:first)').remove();
$('#city').children('option:not(:first)').remove();
$('#branch').children('option:not(:first)').remove();
$('#branchAddress').children('option:not(:first)').remove();
我尝试用逗号分隔添加所有字段,但它不起作用。
请帮助优化上述代码。