我得到了運行時JS錯誤:「意外調用方法或屬性」。 下面是代碼:JavaScript運行時錯誤:appendChild() - 意外的調用IE8中的方法或屬性
var comboInput = document.getElementById("Combo");
var option1 = document.createElement("option");
option1.value = "-1";
option1.innerHTML = "--Select--";
comboInput.appendChild(option1); //At this line debugger breaks and
// throws the above error
我經歷了一些關於這個問題上如此相似的問題,但仍然沒有得到解決了。
請幫助.. 謝謝進階...
試圖看看'comboInput'有什麼。或將ü請粘貼相關代碼 – diEcho 2012-01-04 06:01:00
comboInput的值是: 'ObjectHTMLinputElement' – Ved 2012-01-04 06:14:39
輸入元素總是自我封閉,不能有孩子,據我所知。這聽起來像你實際上希望'#Combo'是一個[select](https://developer.mozilla.org/en/HTML/Element/select)元素。 – sethobrien 2012-01-04 06:46:30