IE yanlış sözdizimi?

0 Cevap php

(JS): ben böyle bir kod satırı var

numOfprocess = parseInt(xmlDoc.getElementsByTagName('process_count')[0].childNodes[0].nodeValue)
for (i = 1; i <= numOfProcess; i++)
{
processStatus = xmlDoc.getElementsByTagName('proccess' + i)[0];
if(processStatus.childNodes[0].nodeValue == false)
{...}
}

everytime i use this syntax there is an error "obejct required" while in Firefox eveything is ok. (the ... are just to explain)

Ben bu gibi bazı hata ayıklama yapmak için çalıştı:

alert(processStatus.childNodes[0].nodeValue) 

ve sonuç bu yüzden var gayet 0 oldu. (Ayrıca ff çalıştı yani ..)

xml:

         <process_count>2</process_count>
         <Application_Status>
                        <proccess2>1</proccess2>
         </Application_Status>

başka bir şey i = 1 için Tamam ama, i = 2 için değil olmasıdır.

Teşekkür ederim.

0 Cevap