JavaScript 参考手册
JavaScript htmlspecialchars 函数
使用 htmlspecialchars 对一段代码进行转换,以便在HTML中显示出来。
源代码:
点击运行 »
<script> function htmlspecialchars (text) { var map = { '&': '&', '<': '<', '>': '>', '"': '"', "'": ''' }; return text.replace(/[&<>"']/g, function (m) { return map[m]; }); } document.write(htmlspecialchars('<p>这是一个段落。</p>')) </script>
运行结果:
点击运行 »