nodeChild.value为null,我不知道为什么

时间:2017-05-09 18:33:17

标签: javascript

function chkFormular(form) 
{   

    var i;
    for (i = 0; i < form.childNodes.length; i++) 
    {
        console.log(form.childNodes[i].nodeName);
        if(form.childNodes[i].nodeName == "INPUT")
        {
            console.log(form.childNodes[i].nodeValue);
        }
    }
}

控制台:

#text  
INPUT  
null  
#text  
IMG  
#text 
BUTTON
#text

为什么是空的?

0 个答案:

没有答案