我想在我的wordpress托管网站上写一些javascript代码作为纯文本。但每当我看到实时,代码代码都会被省略。如何解决问题意味着如何将脚本代码发布为纯文本?
我想替换以下代码:
<script src="//cdn.ckeditor.com/4.5.7/standard/ckeditor.js"></script>
<script>
CKEDITOR.replace( 'article-ckeditor' );
</script>
<script>
使用以下代码:
<script src="//cdn.ckeditor.com/4.5.7/standard/ckeditor.js">
</script>
<script>
CKEDITOR.replace( 'article-ckeditor' );
</script>
</pre>
答案 0 :(得分:1)
这包括right in the Codex。您需要将<
和>
字符转换为其字符实体对应字符。例如:
<pre>
<script>
var javaScript = 'cool!';
</script>
</pre>