js 兼容问题 SELECT OPTION

ie 下 document.all 可以用

火狐 document.all 不可用

解决办法 用 document.getElementsByName()

ie 下 select(对象).options.remove() 可以使用

火狐 select(对象).options.remove() 不可用

解决办法 select(对象).remove()

原文地址:https://www.cnblogs.com/y0umer/p/3839420.html