[help] how is the jquery insertion code escaped?

jquery needs to insert a piece of code
but what the web ends up directly is the source code
. After viewing, it is escaped and puzzled. The solution
is as follows:

this.before("<b>Before</b>");

Feb.18,2022

for security reasons against injection, most of jQuery's API has been escaped for you.
so you need to use a specific API for non-escaped Dom creation.

for example: $(x) .html (' Before ')

or

const b = $('<b>Before</b>');
this.before(b);

this is not jquery

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b35cb4-2bfbb.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b35cb4-2bfbb.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?