[求助]options.remove()是什么意思
options.remove()是什么意思
function sel1()
{
while (Add1.options.length > 0)
Add1.options.remove(0); //这句是什么意思,和上句有什么关系
for (var i = 0; i < provinceList.length; i++)
{
var opt = document.createElement("OPTION");
opt.value = provinceList[i];
opt.text = provinceList[i];
Add1.options.add(opt);
opt = null;
}
sel2();
Add1.onchange = sel2;
}