设置索引
selectField.selectedIndex = 第几个选项

解决方案 »

  1.   

    document.getElementById('select').selectedIndex=document.getElementById('select').options.length-1;
      

  2.   

    下标从0开始
    选中最后一个就是 selectField.selectedIndex = selectField.options.length - 1;
      

  3.   

    selected = true/false;
    楼主该多看看htmlref手册opt.text = "新增项"
    还有appendChild和options不要在一起用
    opt.selected = true;就可以了
    或者在options.add(opt)后用options[]