// 下拉列表去重
$("select option").each(function(){text = $(this).text();
if($("select option:contains("+text+")").length > 1)
$("select option:contains("+text+"):gt(0)").remove();})
与后台交互追加的下拉列表未能实现去重功能
// 下拉列表去重
$("select option").each(function(){text = $(this).text();
if($("select option:contains("+text+")").length > 1)
$("select option:contains("+text+"):gt(0)").remove();})
与后台交互追加的下拉列表未能实现去重功能