您现在的位置是:网站首页> 编程资料编程资料
FCKEditor网页编辑器 几点使用心得_网页编辑器_
2023-05-25
446人已围观
简介 FCKEditor网页编辑器 几点使用心得_网页编辑器_
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、按回车符后生成的是是
还是
复制代码 代码如下:
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、按回车符后生成的是是
还是
由fckconfig.js文件里的FCKConfig.EnterMode/FCKConfig.ShiftEnterMode决定,也可动态设置但属性名不是FCKConfig,而是Config。
您可能感兴趣的文章:
相关内容
- FckEditor 中文配置手册_网页编辑器_
- fckeditor asp版本的文件重命名_网页编辑器_
- FckEditor 上传图片后图片变小了!问题解决_网页编辑器_
- PHP网页 Ewebeditor 编辑器嵌入方法_网页编辑器_
- Ewebeditor 文件上传问题_网页编辑器_
- 让 FCKeditor 支持多用户Web环境(以PHP为例)_网页编辑器_
- xhEditor 免费的国产HTML在线编辑器_网页编辑器_
- 通过Fckeditor把图片上传到独立图片服务器的方法_网页编辑器_
- myFocus 一个KindEditor的焦点图插件_网页编辑器_
- 常用网页编辑器漏洞手册(全面版)fckeditor,ewebeditor_网页编辑器_
