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; // "<h1>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
HTML beginners often encounter the problem of how ...
Table of contents 1. Parent-child component commu...
First, a common question is, what is the relation...
Basic Environment Pagoda installation service [Py...
After Ubuntu 20.04 is installed, there is no root...
Table of contents Get the content of the iframe o...
1. Introduction The telnet command is used to log...
Table of contents 1. Nginx implements load balanc...
Original configuration: http { ...... limit_conn_...
MySQL is now the database used by most companies ...
Detailed explanation of mysql count The count fun...
Uninstall the installed version on Ubuntu: sudo a...
1. The significance of persistent statistical inf...
1. Always use :key in v-for Using the key attribu...
This article shares a dynamic loading progress ba...