fckeditor 不显示有问题

来源:百度知道 编辑:UC知道 时间:2024/07/07 21:24:04
在页面上的源码有fckeditor的相关代码,但网页上没有显示出来,就像图片上一样,希望大家帮帮忙,感谢了,分数可以追加!
<form action="shou.jsp" method="post" target="_blank">
<div><input type="hidden" id="content" name="content" value="
input
"><input type="hidden" id="content___Config" value="SkinPath=/compass/FCKeditor/editor/skins/silver/"><iframe id="content___Frame" src="/FCKeditor/editor/fckeditor.html?InstanceName=content&Toolbar=Default" width="400" height="200" frameborder="no" scrolling="no"></iframe></div>

<input type="submit" value="Submit">

</form>
上面是这张网页的有关fckeditor的代码,并且能在shou.jsp上收到相关的内容,

没一点格式 参考下吧
<html>
<head>
<script src=/fckeditor/fckeditor.js"></script>
</head>
<body>
<form action="shou.jsp" method="post" target="_blank">
<script>
var editor = new FCKeditor('message');
editor.BasePath='/fckeditor/';
editor.Height=280;
editor.ToolbarSet='Default';
editor.Create();
</script>
<input type="submit" value="提交" name="button">
</form>
</body>
</html>

怎么解决的,贴下来呗,我也出现这种情况了,谢谢