I have been testing for hours different codes for traveling the DOM.

$(element).children('.classelement').each(function(){
    alert(this) // returns "object HtmlDivElement"
    alert(this.lastChild) // returns "object Text"

    // NOTE: The last child is a <a> element
});

Why this.lastChild returns object Text?. If this returns a DOM object, why lastChild doesn't?

And after i have the next question: What kind of object returns a this inside a .each?

What i must to do for get an DOM object in this case?

有帮助吗?

解决方案

lastChild returns the last node any of type in an element (including space, tab or newline written in the file). If you need the last HTMLElement within an element, you have to use lastElementChild.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top