FCKEditor网页编辑器 几点使用心得_网页编辑器教程-查字典教程网
FCKEditor网页编辑器 几点使用心得
FCKEditor网页编辑器 几点使用心得
发布时间:2016-12-29 来源:查字典编辑
摘要:1、挂接事件,比如onkeydown事件,要在FCKeditor_OnComplete里实现:复制代码代码如下:functionFCKedi...

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。

相关阅读
推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
  • 大家都在看
  • 小编推荐
  • 猜你喜欢
  • 最新网页编辑器学习
    热门网页编辑器学习
    编程开发子分类