What do people mean by “DOM Manipulation” and how would I do that?

前端 未结 4 1011
庸人自扰
庸人自扰 2020-12-12 13:15

I always hear people talk about DOM this, manipulate the DOM, change the DOM, traverse the DOM; but what exactly does this mean?

What is the DOM and why would I want

4条回答
  •  失恋的感觉
    2020-12-12 13:55

    D ocument

    O bject

    M odel

    This is the DOM. Either an XML, or HTML, or similar document. All of those terms mean to parse the document and/or make changes to it (usually by using some available tools like JavaScript or C#).

    The best example of a DOM when people use those terms is the HTML document in a browser. You might want to manipulate the DOM in this case to add something to the web page.

提交回复
热议问题