使用google prettify 让代码高亮,效果非常好看。引入也很方便,引入js后,会自动把pre code 标签包含的内容,代码高亮,而且还可以使用 linenums 显示行号。
1.下载地址:
http://code.google.com/p/google-code-prettify/
http://www.bootcdn.cn/prettify/
网络引入地址: //cdn.bootcss.com/prettify/r298/prettify.min.js
2.在head中引入这两个文件
<link href="google-code-prettify/prettify.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="google-code-prettify/prettify.js"></script>
3 在body加上onload=”prettyPrint()
<body onload="prettyPrint()">...</body>
4 把代码放进 pre code标签
<pre>...</pre>
或者
<code>...</code>
就可以实行代码高亮了
你也可以指定一种语言,class=”prettyprint
Lang-html”,在lang- 后添加以下任何一种语言。“bash”, “c”, “cc”, “cpp”, “cs”, “csh”, “cyc”, “cv”, “htm”, “html”, ”java”, “js”, “m”, “mxml”, “perl”, “pl”, “pm”, “py”, “rb”, “sh”, ”xhtml”, “xml”, “xsl”
5 显示行号
你可以使用linenums打开行号
<pre class=”prettyprint linenums Lang-html”>
6.效果图
案例代码:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<head>
<!-- 新 Bootstrap 核心 CSS 文件 -->
<link rel="stylesheet" href="//cdn.bootcss.com/bootstrap/3.3.5/css/bootstrap.min.css">
<!-- 可选的Bootstrap主题文件(一般不用引入) -->
<link rel="stylesheet" href="//cdn.bootcss.com/bootstrap/3.3.5/css/bootstrap-theme.min.css">
<link href="//cdn.bootcss.com/prettify/r298/prettify.min.css" rel="stylesheet">
<!-- jQuery文件。务必在bootstrap.min.js 之前引入 -->
<script class="lazy" data-original="//cdn.bootcss.com/jquery/1.11.3/jquery.min.js"></script>
<!-- 最新的 Bootstrap 核心 JavaScript 文件 -->
<script class="lazy" data-original="//cdn.bootcss.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<script class="lazy" data-original="//cdn.bootcss.com/prettify/r298/prettify.min.js"></script>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>质量录入</title>
</head>
<body onload="prettyPrint()">
<form action="<%=basePath %>rest/wx" method="post">
<div class="container">
<h1 class="page-header">代码<small>google prettify代码高亮</small></h1>
<p>Bootstrap是基于<code>HTML5</code>和<code>CSS3</code>开发的,它在jQuery的基础上进行了更为个性化和人性化的完善,形成一套自己独有的网站风格,并兼容大部分jQuery插件。</p>
<pre class="prettyprint linenums">
<div class="container">
<h1 class="page-header">列表<small>无序列表、有序列表、描述列表</small></h1>
<h2>有序列表</h2>
<ul>
<li>开发</li>
<li>运维</li>
<li>需求</li>
</ul>
<h2>无序列表</h2>
<ol>
<li>JAVA</li>
<li>PHP</li>
<li>C#</li>
</ol>
<h2>描述列表</h2>
<dl class="dl-horizontal">
<dt>JAVA</dt><dd>SUN公司的开发语言</dd>
<dt>C#</dt><dd>Microsoft公司的语言</dd>
</dl>
</div>
</pre>
</div>
</form>
</body>
</html>