FCKeditor在freemarker中怎么用
我下载了FCKeditor解压到我的Webroot目录下,然后再我的网页上使用
<script type="text/javascript" src="/fckeditor/fckeditor.js"></script>
然后在body里面写
<script type="text/javascript">
var oFCKeditor = new FCKeditor('content');
oFCKeditor.BasePath='/fckeditor/';
oFCKeditor.Height=500;
oFCKeditor.ToolbarSet='Basic';
oFCKeditor.Create();
</script>
为什么总是不能显示编辑栏呢?
路径也没有写错吧!很郁闷,求大神帮忙
目录结构是:
-----+WebRoot
-----------+fckeditor
------------------fckeditor.js
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
直接写在body下面的 没有写textarea
那不行的,要绑定到一个textarea的。