Home > Web Front-end > JS Tutorial > body text

How to Inject HTML into Your DOM Safely and Efficiently?

Barbara Streisand
Release: 2024-11-04 13:11:01
Original
443 people have browsed it

How to Inject HTML into Your DOM Safely and Efficiently?

Injecting HTML into Your DOM: A Comprehensive Guide

Appending HTML strings to your DOM is a common task in web development. In this article, we will explore an effective method to achieve this without resorting to the forbidden innerHTML property.

Unleashing the Power of insertAdjacentHTML()

To dynamically add HTML to your document, consider harnessing the insertAdjacentHTML() method. This feature is universally supported by modern browsers and offers a safe and efficient way to manipulate the DOM.

Syntax and Usage

The insertAdjacentHTML() method takes two parameters:

  • position: The position where you want to insert the HTML. Valid values include:

    • beforebegin: Before the start of the element
    • afterbegin: Inside the element, before its first child
    • beforeend: Inside the element, after its last child
    • afterend: After the end of the element
  • html: The HTML string you want to insert

Practical Example

Imagine you have a

element with an id of test. To append our HTML string to this element, we would use the following code:

let str = '<p>Just some <span>text</span> here</p>';
const div = document.getElementById('test');
div.insertAdjacentHTML('beforeend', str);
Copy after login

This will insert the HTML inside the

element, after its last child.

Live Demonstration

For a visual demonstration, please visit the following JSFiddle: http://jsfiddle.net/euQ5n/

Conclusion

Using insertAdjacentHTML() provides a robust and cross-compatible solution for manipulating the DOM. Embrace its power to inject HTML strings into your web pages with ease.

The above is the detailed content of How to Inject HTML into Your DOM Safely and Efficiently?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template