fckediter javascript事件函数代码_网页编辑器

demo:

function FCKeditor_OnComplete( editorInstance )
{
editorInstance.EditorDocument.attachEvent("onkeydown", editor_keydown);
editorInstance.EditorDocument.attachEvent("onkeyup", editor_keyup);
}
function editor_keydown()
{
var oEditor = FCKeditorAPI.GetInstance('inputmsg') ;
var keycode = oEditor.EditorWindow.event.keyCode;
if(keycode==13) {

}

}
function clearInput()
{
var oEditor = FCKeditorAPI.GetInstance('inputmsg') ;
oEditor.Commands.GetCommand( "NewPage" ).Execute(); // oEditor.SetHTML("") ;
}

function editor_keyup()
{
var oEditor = FCKeditorAPI.GetInstance('inputmsg') ;
var keycode = oEditor.EditorWindow.event.keyCode;

if(keycode==13) {
clearInput();
}
}

时间: 2024-11-06 03:56:23

fckediter javascript事件函数代码_网页编辑器的相关文章

javascript 获取FCKeditor内容_网页编辑器

形式如: 复制代码 代码如下: varoEditor=FCKeditorAPI.GetInstance('content'); varcontent=oEditor.GetXHTML(true); ************************************************* 利用Javascript取和设FCKeditor值也是非常容易的,如下: 复制代码 代码如下: // 获取编辑器中HTML内容 function getEditorHTMLContents(Editor

xhEditor的异步载入实现代码_网页编辑器

我将会使用xheditor作为新的在线编辑器,我希望它可以能通过一个php函数就能调用如 复制代码 代码如下: function editor($content,$name){$editor=<<<EOT<textarea id="$name" name="$name" rows="10" cols="60">$content</textarea>EOT;  return $edito

javascript fckeditor编辑器取值与赋值实现代码_网页编辑器

获取编辑器中HTML内容 复制代码 代码如下: function getEditorHTMLContents(EditorName) { var oEditor = FCKeditorAPI.GetInstance(EditorName); return(oEditor.GetXHTML(true)); } 获取编辑器中文字内容 复制代码 代码如下: function getEditorTextContents(EditorName) { var oEditor = FCKeditorAPI.G

FCKEditor+jQuery+PHP实现分页代码_网页编辑器

一.插入新闻 FCKEditor是一款很流行的即插即用WEB编辑器,它支持ASP.PHP.Java等语言.这里要介绍的是利用编辑器的"插入分页符"功能,实现页面的无刷新分页. 编辑新闻时,在需要插入分页的段落处插入分页符,保存即可. 二.读取新闻 在读取新闻字段时,通过PHP分页函数对新闻字段数据进行处理,代码如下: 复制代码 代码如下: function pageBreak($content) { $content = $content; $pattern = "/<

宝丽通实现连续播放实现代码_网页编辑器

可以用JS来监控播放器的事件,如果播放完毕了,就用Js跳转到下一集的播放页面, 这样就可以间接实现连续播放了 复制代码 代码如下: PlayStateChange(newState) newState 0:已停止 1:已停止 2:暂停 3:正在播放 6:正在缓冲 8:播放完毕 11:重新连接 实际应用举例:  复制代码 代码如下: <SCRIPT LANGUAGE=javascript FOR=ActiveX EVENT=PlayStateChange(newState)> if(newSta

asp.net 为FCKeditor开发代码高亮插件实现代码_网页编辑器

所以就为FCKeditor写了个InsertCode的插件.整个插件的制作过程非常简单:FCKeditor插件开发请参考FCKeditor官网的文档: http://docs.fckeditor.net/FCKeditor_2.x/Developers_Guide/Customization/Plug-ins 首先,我们在FCKeditor/editor/plugins目录下新建一个insertcode目录,并在insertcode目录下新建一个fckplugin.js文件. 在新建的fckpl

fckeditor在php中的用法(添加于修改写成了函数)_网页编辑器

复制代码 代码如下: function CreateEditor ($act,$id,$url) { #调用FCKeditor并补完发表文章的表单,act=0:发表新文章 =1修改文章 include("editor/fckeditor.php"); //FCKeditor已存放到此目录下 $oEditor = new FCKeditor ("content"); //对应于一个input控件,相当于是一个name=content的textarea $oEditor

fckeditor常用Js,获取fckeditor内容,统计fckeditor字数,向fckeditor写入指定代码_网页编辑器

content相当于你例子中的FCKeditor1. 复制代码 代码如下: //获取格式化的编辑器内容 function getEditorContents(){ var oEditor = FCKeditorAPI.GetInstance("content"); alert(oEditor.GetXHTML(true)); } //向编辑器插入指定代码 function insertHTMLToEditor(codeStr){ var oEditor = FCKeditorAPI.G

FCKEditor常用Js代码,获取FCK内容,统计FCK字数,向FCK写入指定代码_网页编辑器

content相当于你例子中的FCKeditor1. 复制代码 代码如下: //获取格式化的编辑器内容 function getEditorContents(){ var oEditor = FCKeditorAPI.GetInstance("content"); alert(oEditor.GetXHTML(true)); } //向编辑器插入指定代码 function insertHTMLToEditor(codeStr){ var oEditor = FCKeditorAPI.G