[原创]JQuery的FckEditor插件使用教程

需要引用的js文件:
Content/JQuery-1.2.6.js
fckeditor/fckeditor.js
JQuery.FCKEditor.js

JavaScript代码:

$(document).ready(function(){
//初始化FCKEditor
$.fck.config = {path: '../../FCKeditor/', height: 300 ,toolbar:'Basic'};
$('textarea#infoContent').fck();
});

HTML代码:

<textarea id="infoContent" name="infoContent" rows="22" ></textarea>

读取FCKEditor的值代码:

$.fck.content(&#39;infoContent&#39;, &#39;&#39;); //注意‘infoContent’即为你绑定的textArea的Id或name,这样才能取得值
赞(0) 打赏
分享到: 更多 (0)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

微信扫一扫打赏