1.在页面中引入fckeditor.js文件
<!-- 1,导入js文件 --> | |
<script type="text/javascript" src="fckeditor.js"></script> |
2.
<form action=""> | |
<!-- --> | |
<textarea name="content">abc</textarea> | |
<!-- 2,写一段代码以显示FCKeditor --> | |
<script type="text/javascript"> | |
var oFCKeditor = new FCKeditor( 'content' ) ; // 提交表单时本字段使用的参数名 | |
oFCKeditor.BasePath = "./" ; // 必须要有,这是指定editor文件夹所在的路径,一定要以'/'结尾 | |
oFCKeditor.Height = 300 ; | |
oFCKeditor.Width = 700 ; | |
oFCKeditor.ToolbarSet = "bbs" ; | |
// oFCKeditor.Create() ; // 创建并在当前位置显示FCKeditor | |
oFCKeditor.ReplaceTextarea(); // 替换id或name为指定值的textarea | |
</script> | |
<br><input type="submit" value="提交"> | |
</form> |