问问题
838 次
1 回答
1
尝试设置语言并转义括号/引号:
<code class="prettyprint lang-html">
<button class="primary">Button</button>
</code>
更新:
嗯,实际上我认为您需要使用<pre>
而不是<code>
更新 2:试试这个代码(演示):
$(document).ready(function() {
$('.prettyprint').html(function(i,h){
return h.replace(/[<>\"\'\t\n]/g, function(m) { return {
'<' : '<',
'>' : '>',
"'" : ''',
'"' : '"',
'\t': ' ',
'\n': '<br/>' // needed for IE
}[m]});
});
prettyPrint();
});
于 2013-05-23T15:09:14.353 回答