FCKEditor之一款類似插件的東西,一般Web開發中,需要留言的地方,經常會使用該插件。功能很強大
首先要下載FCKEditor, http://www.fckeditor.net/ ,并拷到當前自己的Web 應用當中
<script type="text/javascript" src="fckeditor/fckeditor.js"></script>

<script type="text/javascript">
var oFCKeditor = new FCKeditor('FCKeditor1');
oFCKeditor.BasePath = '/webproject12/fckeditor/';
var sSkin;
sSkin = "office2003";
var sSkinPath = oFCKeditor.BasePath + 'editor/skins/' + sSkin + '/';
oFCKeditor.Config['SkinPath'] = sSkinPath;

oFCKeditor.Config['PreloadImages'] =
sSkinPath + 'images/toolbar.start.gif' + ';' +
sSkinPath + 'images/toolbar.end.gif' + ';' +
sSkinPath + 'images/toolbar.bg.gif' + ';' +
sSkinPath + 'images/toolbar.buttonarrow.gif' ;
oFCKeditor.Create();
</script>
上述代碼引自他人博客,羅比特實在是懶得打了,又發現寫的如此工整的代碼,嘿嘿,特此說明一下。
首先要下載FCKEditor, http://www.fckeditor.net/ ,并拷到當前自己的Web 應用當中




















上述代碼引自他人博客,羅比特實在是懶得打了,又發現寫的如此工整的代碼,嘿嘿,特此說明一下。