今天我下载了prettify-4-Mar-2013.tar.bz2。我在里面使用了“prettify.css”和“prettify.js”。我知道我可以简单地使用它,只需使用“run_prettify.js”,但我想提供我自己的 JS 和 CSS。这是我的html。
<html>
<head>
<link rel="stylesheet" type="text/css" href="prettify.css">
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src='prettify.js'></script>
<script type="text/javascript">
$(document).ready(function() {
prettyPrint();
});
</script>
</head>
<body>
<pre class="prettyprint">
class Voila {
public:
// Voila
static const string VOILA = "Voila";
// will not interfere with embedded
}
</pre>
</body>
这是我的javascript。(我已经导入了 jQuery.js、prettify.css、prettify.js。)下面的所有 javascripts 都不起作用。
$(function() {
prettyPrint();
});
或者
$(document).ready(function() {
prettyPrint();
});
错误消息是“Uncaught TypeError: Property 'prettyPrint' of object [object Object] is not a function”
或者
<body onload="prettyPrint()">
还是不行。