var g_Year = [
{ Year: "2011" },
{ Year: "2011" },
{ Year: "2010" },
{ Year: "2012" },
{ Year: "2011" },
{ Year: "2012" }
];
fxnDrop = function () {
$.each(g_Year , function (index, Ele) {
var iYear = g_Year [index].Year,
sHtmlYear = '<option value="' + iYear + '">' + iYear + '</option>';
$("#DropDown_Year").each(function (index, Ele) {
$("#DropDown_Year").append(sHtmlYear);
if (Ele.value != iYear) {
$("#DropDown_Year").remove(sHtmlYear);
}
});
});
}
在这里我有多年,我的目标是在下拉框中仅显示一次特定年份。例如:2011 必须在下拉框中仅显示一次。任何人都可以帮我做到这一点。我在 Dropbox 中获得了多个 2011 年的值。