fckeditor(外国货)
在jsp中引入编辑器
<!-- 内容 --><script type="text/javascript" src="/项目名/fckeditor/fckeditor.js"></script><script type="text/javascript">window.onload = function() {var oFCKeditor = new FCKeditor( 'content' ) ;oFCKeditor.BasePath = "/项目名/fckeditor/" ;oFCKeditor.ToolbarSet = 'Default' oFCKeditor.Height=400;oFCKeditor.ReplaceTextarea() ;}</script>?内容:<textarea name="content" cols="60" rows="8" id="content"></textarea>
?