Home  >  Article  >  Web Front-end  >  How do newbies escape the content obtained by innerHTML? what is the code

How do newbies escape the content obtained by innerHTML? what is the code

云罗郡主
云罗郡主forward
2018-10-18 14:15:492398browse

本篇文章给大家带来的内容是关于新手如何对innerHTML获得的内容转义?代码是什么,有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。

<body>
    <div id="code" style="display:none">
        var res = a > b ? a: b;
        res = res > c ? res : c;
        return res;
    </div>
</body>
<script>
var txt=document.getElementById("code").innerHTML;
document.write(txt);
//  输出:var res = a > b ? a: b;
//  res = res > c ? res : c;
//  return res;
//原因是用document.write输出时会对已转义的字符再次转义。
alert(txt);
//  输出:var res = a &gt; b ? a: b;
//  res = res &gt; c ? res : c;
//  return res;
var str = txt.replace(/&gt;/g,">"); 
alert(str);
//  输出:var res = a > b ? a: b;
//  res = res > c ? res : c;
//  return res;
</script>

以上就是对新手如何对innerHTML获得的内容转义?代码是什么的全部介绍,本文内容紧凑,希望大家可以有所收获,更多请关注PHP中文网。


The above is the detailed content of How do newbies escape the content obtained by innerHTML? what is the code. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:csdn.net. If there is any infringement, please contact admin@php.cn delete