你可以这样做。我对addId做了一些修改并写了hideId
var select_count = 0;
function hideId()
{
var selectedIndexes = [];
for(var i=0; i<select_count; i++)
{
var select = document.getElementById("select-" + i);
for(var j=0; j<select.options.length; j++)
{
select.options[j].disabled = false;
}
for(var j=0; j<selectedIndexes.length; j++)
{
var index = selectedIndexes[j];
select.options[index].disabled = true;
if(select.selectedIndex == index)
{
select.selectedIndex = 0;
}
}
selectedIndexes.push(select.selectedIndex);
}
}
function addId() {
var location = document.getElementById("place");
var div = document.createElement("div");
var span = document.createElement("span");
var select = document.createElement("select");
select.setAttribute("id","select-" + select_count );
select_count++;
select.setAttribute("onchange","hideId()");
var option0 = document.createElement("option");
option0.setAttribute("id","option0" );
option0.innerHTML="select";
select.appendChild(option0);
var option1 = document.createElement("option");
option1.setAttribute("id","option1" );
option1.innerHTML="aaaa";
select.appendChild(option1);
var option2 = document.createElement("option");
option2.innerHTML="bbbb";
select.appendChild(option2);
var option3 = document.createElement("option");
option3.innerHTML="cccc";
select.appendChild(option3);
span.appendChild(select);
div.appendChild(span);
location.appendChild(div);
if(select_count > 0)
hideId();
}
更新:
如果你需要它来处理 n 个元素,你可以这样做。要添加更多元素,只需将它们添加到 select_values。此外,我已经修改了 hideId,因此它不会隐藏第一个值(“select”)。
var select_count = 0;
var select_values = ["select", "aaa", "bbb", "ccc", "ddd", "eee"];
function hideId()
{
var selectedIndexes = [];
for(var i=0; i<select_count; i++)
{
var select = document.getElementById("select-" + i);
for(var j=0; j<select.options.length; j++)
{
select.options[j].disabled = false;
}
for(var j=0; j<selectedIndexes.length; j++)
{
var index = selectedIndexes[j];
select.options[index].disabled = true;
if(select.selectedIndex == index)
{
select.selectedIndex = 0;
}
}
if(select.selectedIndex != 0)
selectedIndexes.push(select.selectedIndex);
}
}
function addOption(select, id, value)
{
var option1 = document.createElement("option");
option1.setAttribute("id", id);
option1.innerHTML = value;
select.appendChild(option1);
}
function addId()
{
var location = document.getElementById("place");
var div = document.createElement("div");
var span = document.createElement("span");
var select = document.createElement("select");
select.setAttribute("id","select-" + select_count );
select_count++;
select.setAttribute("onchange","hideId()");
for(var i=0; i<select_values.length; i++)
addOption(select, "option" + i, select_values[i]);
span.appendChild(select);
div.appendChild(span);
location.appendChild(div);
if(select_count > 0)
hideId();
}
更新 2:
要以任何顺序工作(不仅仅是从倒置),请使用以下hideId()版本:
function hideId()
{
var selectedIndexes = [];
for(var i=0; i<select_count; i++)
{
var select = document.getElementById("select-" + i);
for(var j=0; j<select.options.length; j++)
{
select.options[j].disabled = false;
}
if(select.selectedIndex != 0)
selectedIndexes.push({ index: select.selectedIndex, select: select });
}
for(var i=0; i<select_count; i++)
{
var select = document.getElementById("select-" + i);
for(var j=0; j<selectedIndexes.length; j++)
{
var selected = selectedIndexes[j];
if(selected.select != select)
{
select.options[selected.index].disabled = true;
if(select.selectedIndex == selected.index)
select.selectedIndex = 0;
}
}
}
}