使用SyntaxHighlighter实现HTML高亮显示代码的方法

syntaxhighlighter是一个小开源项目,它可以在网页中对各种程序源代码语法进行加亮显示。

https://www.jb51.net/jiaoben/15599.html
syntaxhighlighter是一个小开源项目,它可以在网页中对各种程序源代码语法进行加亮显示。支持当前流行的各种编程语言:
C#、CSS、C++、Delphi、Java、JavaScript、PHP、Python、Ruby、SQL、Visual Basic、XML / HTML
使用方法:
1、假设网页文件test.htm存放在一个目录,则将dp.SyntaxHighlighter解压缩到该目录下的子目录,假设为images

2、在网页的<head></head>之间插入以下代码:

复制代码 代码如下:


<link type="text/css" href="https://www.jb51.net/images/Styles/SyntaxHighlighter.css"></link>


3、在网页要显示程序源代码的地方插入以下代码(其中的class="js"表示以js语法显示源代码,其他可设定的class值分别为
c#、css、c、delphi、java、js、php、python、ruby、sql、vb、xml):

复制代码 代码如下:


<textarea rows="15" cols="100">
//程序源代码放在这儿
</textarea>



4、在网页尾部的</body>之前插入以下代码:

复制代码 代码如下:


<script src="https://www.jb51.net/images/Scripts/shCore.js"></script>
<script src="https://www.jb51.net/images/Scripts/shBrushCSharp.js"></script>
<script src="https://www.jb51.net/images/Scripts/shBrushPhp.js"></script>
<script src="https://www.jb51.net/images/Scripts/shBrushJScript.js"></script>
<script src="https://www.jb51.net/images/Scripts/shBrushJava.js"></script>
<script src="https://www.jb51.net/images/Scripts/shBrushVb.js"></script>
<script src="https://www.jb51.net/images/Scripts/shBrushSql.js"></script>
<script src="https://www.jb51.net/images/Scripts/shBrushXml.js"></script>
<script src="https://www.jb51.net/images/Scripts/shBrushDelphi.js"></script>
<script src="https://www.jb51.net/images/Scripts/shBrushPython.js"></script>
<script src="https://www.jb51.net/images/Scripts/shBrushRuby.js"></script>
<script src="https://www.jb51.net/images/Scripts/shBrushCss.js"></script>
<script src="https://www.jb51.net/images/Scripts/shBrushCpp.js"></script>
<script>
dp.SyntaxHighlighter.HighlightAll('code');
</script>

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wdpyyg.html