码迷,mamicode.com
首页 > Web开发 > 详细

代码高亮js

时间:2014-08-23 08:49:20      阅读:228      评论:0      收藏:0      [点我收藏+]

标签:style   http   color   io   for   ar   cti   代码   html   

<script src="http://code.jquery.com/jquery.min.js"></script>
<textarea>
</textarea>
<pre></pre>
<button onclick="format()">Format</button>
<script>
function format()
{

var str=$("textarea").html();
var txt=str.replace(/".*?"/g,‘<span style="color:#cc9933;font-weight:bold">$&</span>‘);

txt=txt.replace(/using|namespace|struct|const|static|auto|for|return|while/g,‘<span style="color:#0033cc;font
-weight:bold">$&</span>‘);
txt=txt.replace(/double|\bint\b|float|bool/g,‘<span style="color:#9966cc;font-weight:bold">$&</span>‘);
txt=txt.replace(/#include\s*&lt;.*?&gt;/g,‘<span style="color:#cc3333">$&</span>‘);
$("pre").html(txt);
}
</script>

代码高亮js

标签:style   http   color   io   for   ar   cti   代码   html   

原文地址:http://www.cnblogs.com/sky-view/p/3930630.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!