list.options.length=0; 清除下拉框 select控件下的所有元素
动态添加option
for(var i=0;i<nodes.length;i++)
{
var guid=nodes.item(i).getAttribute("id");
var name=SVGDocument.getElementById(guid+"txt").firstChild.nodeValue;
var oOption = document.createElement("OPTION");
oOption.text = name;
oOption.value = guid;
list.options.add(oOption);
}