html的select标签清空option!~~~~

最好的方法:document.getElementById("selectId").length = 1;

也可以document.getElementById("selectId").innerHTML = '';

这两种方法可以基本满足要求。

原文地址:https://www.cnblogs.com/guilty/p/3725563.html