网上讲JS动态添加option和删除option的文章很多,在此推荐一篇: http://www.jb51.net/article/35205.htm 我使用的是如下方法: function removeAll(){ var obj=document.getElementById('mySelect'); obj.options.length=0; } 由于使用jQuery习惯了,获取select对象时使用的JQuery的Id选择器,恰恰因为这个,发现一个问题: 显示TypeError,jQue