HTML text escape tips

HTML text escape tips
Today I saw a little trick for HTML text escaping on CSDN, which is very simple.

1. Use dom functions. First pass it to a DOM object as innerTEXT, then take the innerHTML attribute to get the escaped text.

For example:

div1.innerText = "<h1>title title....</h1>";

var str = div1.innerHTML; // "&lt;h1&gt;title title..."

2. Assuming there is a text context, you can perform $(x).text(context).html() on a jQuery object $(x), which will return an escaped text.

var str = $(x).text(context).html()

<<:  The difference between docker run and start

>>:  How to use the EXPLAIN command in SQL

Recommend

Analysis of the difference between HTML relative path and absolute path

HTML beginners often encounter the problem of how ...

Three ways to communicate between React components (simple and easy to use)

Table of contents 1. Parent-child component commu...

Detailed tutorial on deploying Django project under CentOS

Basic Environment Pagoda installation service [Py...

How to enable the root account in Ubuntu 20.04

After Ubuntu 20.04 is installed, there is no root...

Summary of how JS operates on pages inside and outside Iframe

Table of contents Get the content of the iframe o...

Use of Linux telnet command

1. Introduction The telnet command is used to log...

Example of setting up a whitelist in Nginx using the geo module

Original configuration: http { ...... limit_conn_...

In-depth understanding of Mysql logical architecture

MySQL is now the database used by most companies ...

MySQL count detailed explanation and function example code

Detailed explanation of mysql count The count fun...

Problems installing TensorRT in docker container

Uninstall the installed version on Ubuntu: sudo a...

Detailed explanation of MySQL persistent statistics

1. The significance of persistent statistical inf...

8 tips for Vue that you will learn after reading it

1. Always use :key in v-for Using the key attribu...

Native JS implementation of loading progress bar

This article shares a dynamic loading progress ba...