共计 185 个字符,预计需要花费 1 分钟才能阅读完成。
// 下拉列表去重
$("select option").each(function(){text = $(this).text();
if($("select option:contains("+text+")").length > 1)
$("select option:contains("+text+"):gt(0)").remove();})
与后台交互追加的下拉列表未能实现去重功能
正文完