Referencia html()

html()

Sets the inner HTML of the element, replacing any existing HTML.

The second parameter, append, is optional. If true is passed, as in myElement.html('hi', true), the HTML is appended instead of replacing existing HTML.

If no arguments are passed, as in myElement.html(), the element's inner HTML is returned.

Ejemplos

Sintaxis

html()
html([html], [append])

Parámetros

html
String:

the HTML to be placed inside the element

append
Boolean:

whether to append HTML to existing

Notice any errors or typos? Please let us know. Please feel free to edit src/dom/dom.js and open a pull request!

Referencias Relacionadas