我有以下内容,它动态地将新值选项添加到选择框中。我遇到的问题是它在将新选项添加到选择框中之前不检查重复条目。有没有办法我可以更改我的代码,以便它会提醒用户发现重复条目并停止添加相同的选项值?
function refadd() {
var val = document.getElementById('docsref').value
if (val != "") {
var select = document.getElementById('docsref_list');
var option = document.createElement('option');
option.text = value
select.add(option,select.option)
select.selectedIndex = select.options.length - 1;
}
}