與IE的問題。 下面是代碼:className null或不是對象再次
if (($.browser.msie)) {
var first_el = 0;
var targie = document.getElementById(targId).getElementsByTagName("div");
for (var i = 0; i < targie.length, first_el < 1; i++) {
if ((typeof targie[i].className != 'undefined') && (targie[i].className != null)) {
if ((targie[i].className == "category list even") || (targie[i].className == "category list") || (targie[i].className == "good list even") || (targie[i].className == "good list")) {
var targ = targie[i];
first_el += 1;
}
}
}
}
和錯誤 - className null or not an object
發現了類似的話題,但解決方案並不能幫助我。
在此先感謝
非常感謝。一切都好。 我不使用選擇器,因爲我需要繼續使用對象方法,這是不存在於JQuery –
我喜歡在JS中的一個begginer,也許你知道,如何使相當於由選擇器返回的對象和返回的對象document.getElementByWhatever? –
您可以輕鬆地從jQuery中返回DOM元素,因爲這使得代碼更容易,我強烈推薦它。你能附上週圍的代碼到你的問題嗎? – Bergi