1、挂接事件,比如onkeydown事件,要在FCKeditor_OnComplete里实现:
复制代码 代码如下:
function FCKeditor_OnComplete( editorInstance )
{
if (document.all) // IE
editorInstance.EditorDocument.attachEvent("onkeypress", FCKeditor_OnKeyup) ;
else// other browser
editorInstance.EditorDocument.addEventListener( 'onkeypress', FCKeditor_OnKeyup, true );
}
2、挂接后如果调用了fckeditor的SetHTML函数,则挂接事件会失效,要改用oEditor.EditorDocument.body.innerHTML来设置内容即可。
3、用window.event.keyCode只能取到null值,要用FCKeditorAPI.GetInstance('FCKeditor1').EditorWindow.event.keyCode。
4、按回车符后生成的是是br>还是p>由fckconfig.js文件里的FCKConfig.EnterMode/FCKConfig.ShiftEnterMode决定,也可动态设置但属性名不是FCKConfig,而是Config。
您可能感兴趣的文章:- javascript fckeditor编辑器取值与赋值实现代码
- FCKeditor 网页在线编辑器的使用方法
- 页面上存在多个FckEditor编辑器的验证方法
- FCKeditor 编辑器插入代码功能实现步骤
- javascript 获取FCKeditor内容
- Js FCKeditor的值获取和修改的代码小结