Not enough arguments

这是因为写法document.getElementById(**).add(new Option(**,**));致使的。它不符合W3C dom标准写法。  解决办法:  1. document.getElementById(**).options.add(new Option(**,**));  2. document.getElementById(**).appendChild(new Option(**,**)); 
相关文章
相关标签/搜索