我似乎找不到什么错。我有这个HTML文件与Google Prettify一起使用。 prettify.css和prettify.js都与html文件位于同一目录中

<html>
<head>
<script src="prettify.js"></script>
<link rel=StyleSheet href="prettify.css" type="text/css">
</head>

<body>
<pre class="prettyprint">
//Some sample text
for(int i = 0; i<10; i++){
    //Do something
}
</pre>
</body>
</html>

这就是它的样子

我想念的是什么颜色?

谢谢

最佳答案

onload="prettyPrint()"添加到文档的body标签中。

<body onload="prettyPrint()">

关于javascript - Google美化为不显示颜色,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12506244/

10-12 06:39