function setFun(){ var id = new Array(1,2,3); var value = new Array("贵州","重庆","四川"); var select = document.getElementById("area"); select.length = 1;//设置只能选择一个 select.options[0].selected = true;//设置默认选中第一个 for(var x = 0;xvar option = document.createElement("option"); option.setAttribute("value",id[x]);//设置option属性值 option.appendChild(document.createTextNode(value[x])); select.appendChild(option);//向select增加option } } script>