我正在尝试使用jQuery用CKEditor替换textarea,我一定做错了。 (用javascript工作正常)。
以下是我正在使用的代码:
<!DOCTYPE html>
<html>
<head>
<script src="ckeditor/ckeditor.js"></script>
<script src="ckeditor/adapters/jquery.js"></script>
<script src="jquery/jquery-1.11.0.min.js"></script>
<script type="text/javascript">
$( document ).ready( function() {
$('#rfp_description').ckeditor();
} );
</script>
</head>
<body>
<textarea id="rfp_description" ></textarea>
</body>
</html>
答案 0 :(得分:0)
检查file.js是否在正确的路径中并重新排序脚本标记
<!DOCTYPE html>
<html>
<head>
<script src="jquery/jquery-1.11.0.min.js"></script>
<script src="ckeditor/ckeditor.js"></script>
<script src="ckeditor/adapters/jquery.js"></script>
<script type="text/javascript">
$( document ).ready( function() {
$('#rfp_description').ckeditor();
} );
</script>
</head>
<body>
<textarea id="rfp_description" ></textarea>
</body>
</html>
答案 1 :(得分:-1)
Patsy Issa解决了我的问题
在ckeditor之前加入jquery。