将字符串数组放入select的options中
如题,我已经研究好几天了,帮帮忙。下面是代码!function stunames()
{
if (xmlHttp.readyState == 4)
{
if (xmlHttp.status == 200)
{
resText = xmlHttp.responseText
each=resText.split("|");
buildSelect(each, document.getElementById("name"),"请选择所在专业");
}
}
}
function buildSelect(str,sel,label){
alert(str.length)
for(var i=0;i<str.length;i++)
alert(str[i]);
sel.options[i].text=str[i];
sel.options[i].value=str[i];
//sel.options[sel.options.length]=new option(str[i],str[i])
alert("ok");
都不行,哪位帮忙该该!