質問する
838 次
1 に答える
1
言語を設定し、括弧/引用符をエスケープしてみてください:
<code class="prettyprint lang-html">
<button class="primary">Button</button>
</code>
アップデート:
<pre>
うーん、実際には、代わりに使用する必要があると思います<code>
更新 2: このコードを試してください ( demo ):
$(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 に答える