我正在尝试将CL Editor (V1.3.0) 用于我的一个项目,但我无法使其工作。我已经根据“入门”部分完成了所有工作,所以我有一个名为“test”的文件夹,其中包含以下文件:
jquery.cleditor.css
jquery.min.js
jquery.cleditor.min.js
test.html
images/buttons.gif
images/toolbar.gif
我的 test.html 文件如下所示:
<html>
<head>
<link rel="stylesheet" type="text/css" href="jquery.cleditor.css" />
<script type="text/javascript" src="jquery.min.js"></script>
<script type="text/javascript" src="jquery.cleditor.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#input").cleditor();
});
</script>
</head>
<body>
<textarea id="input" name="input"></textarea>
</body>
</html>
不过,当我打开 test.html 时,我只会看到一个正常的文本区域。有什么想法我可能做错了吗?需要任何其他信息吗?
注意:该示例运行良好,因此它与我的浏览器设置无关。