JS converts a pre-defined HTML string into an HTML entity htmlspecialchars output HTML entity content including tags, not automatically escaped labels, only display content, PHP-like Htmlspecialchars

Source: Internet
Author: User

function Htmlspecialchars (str) {
str = str.replace (/&/g, ' & ');
str = str.replace (/</g, ' &lt; ');
str = str.replace (/>/g, ' &gt; ');
str = str.replace (/"/g, ' &quot; ');
str = str.replace (/'/g, ' & #039; ');
return str;
}

This version is more than a few things translated
function Htmlspecialchars (str) {
var s = "";
if (Str.length = = 0) return "";
for (var i=0; i<str.length; i++)
{
Switch (STR.SUBSTR (i,1))
{
Case "<": s + = "&lt;"; Break
Case ">": S + = "&gt;"; Break
Case "&": S + = "&amp;"; Break
Case "":
if (str.substr (i + 1, 1) = = "") {
s + = "&nbsp;";
i++;
} else S + = "";
Break
Case "\" ": s + =" &quot; "; Break
Case "\ n": s + = "<br>"; Break
Default:s + = Str.substr (i,1); Break
}
}
return s;
}

JS converts a pre-defined HTML string into an HTML entity htmlspecialchars output HTML entity content including tags, not automatically escaped labels, only display content, PHP-like Htmlspecialchars

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.