我在这里有一段代码,可以在FireFox,Chrome和InternetExplorer 9中正常运行,但在InternetExplorer 8中无效。我正在处理选择框。
var finalExclusionList = Dom.get("finalExclusionList-box");
var countryList = Dom.get("regionsAndCountries-box");
for (var i=0; i<finalExclusionList.length; i++) {
countryList.add(finalExclusionList[i]);
}
我在countryList.add方法中遇到错误,说的是无效的参数...
有谁知道IE8中的错误是什么?
IE8 - CONSOLE.LOG
console.log(countryList)
LOG: [object HTMLSelectElement]
console.log(countryList[0])
LOG: [object HTMLOptionElement]
console.log(finalExclusionList[i])
LOG: [object HTMLOptionElement]
console.log(countryList.add)
LOG:
function add() {
[native code]
}
IE9 - CONSOLE.LOG
>> console.log(countryList)
LOG: [object HTMLSelectElement]
>> console.log(countryList[0])
LOG: [object HTMLOptionElement]
>> console.log(finalExclusionList[i])
LOG: [object HTMLOptionElement]
>> console.log(countryList.add)
LOG:
function add() {
[native code]
}
谢谢!
答案 0 :(得分:0)
countryList.add()
?我会使用countryList.appendChild()
。