Three methods of html Tag output after reading data from the database, three methods of tag

Source: Internet
Author: User

Three methods of html Tag output after reading data from the database, three methods of tag

Maybe the data read by many people from the database does not need to be converted into html tags, but one day you may find that when we need to output html tags, the compiler will automatically help us output them as strings. This is what we can do.

Method 1:

The most common method is to use JS or JQ.

JQ:

$ ("# Div" ).html ("<span> I am an HTML code </span> ");

JS:

Var dobj = document. getElementById ("div"); dobj. innerHTML = "<span> I am an HTML code </span> ";

Method 2:

When you find that the data read from the database is not running in the above two methods, you can try it.

$ ("# Div" ).html ("@ Html. Raw (I am the HTML code in the database )");

How does html output html tags read from the database?

Use the strip_tags () function to remove html Tag output. Usage: strip_tags ($ content ). $ Content is the string to be intercepted
 
PHP reads data from the database. How can html and js tags contained in the data be invalidated and output directly?

Echo htmlspecialchars ("<script> alert ('1'); </script>", ENT_QUOTES );
Test passed. No dialog box is displayed.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.