在kindEditor中获取当前光标的位置索引的实现代码_网页编辑器

呵呵,有这个说明他自己有获取光标位置的办法,然后顺藤摸瓜找到了,拿出来分享一下.

下面editor.cmd.range.startOffset部分就是了.

复制代码 代码如下:

var editor;KindEditor.ready(function () {
editor = KindEditor.create("#txt_content");
alert(editor.cmd.range.startOffset);}
);

另: 还发现有个editor.cmd.range.endOffset,不知道是干嘛的,哪位兄弟知道的指点一下.多谢.

答:startOffset是开始位置,那么endOffset应当是结束位置,这样我们可以应该可以获取到选中的文字。

时间: 2024-11-05 14:48:07

在kindEditor中获取当前光标的位置索引的实现代码_网页编辑器的相关文章

kindEditor中获取当前光标的位置

 代码如下 复制代码 var editor; KindEditor.ready(function () { editor = KindEditor.create("#txt_content"); alert(editor.cmd.range.startOffset);} );

asp中获取当前页面的地址与参数的函数代码_应用技巧

复制代码 代码如下: Function getCurrentUrl() On Error Resume Next Dim strTemp If LCase(Request.ServerVariables("HTTPS")) = "off" Then strTemp = "http://" Else strTemp = "https://" End If strTemp = strTemp & Request.Serve

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

RichTextBox中,怎么样获得光标的位置

问题描述 RichTextBox中,怎么样获得光标的位置 解决方案 解决方案二:MsgBoxText1.SelStart解决方案三:RichTextBox1.SelectionStart

如何在 Windows Phone 8 中获取手机的当前位置

原文  如何在 Windows Phone 8 中获取手机的当前位置 适用于:仅限于 Windows Phone 8. 本主题演示如何使用 Windows Phone 位置 API 确定手机的当前位置.如果您的应用仅需要用户当时的位置,例如,记录某位置的用户,或进行基于位置的搜索,则这是用于获取位置的建议方法.相比使用持续跟踪,此方法对于手机电池寿命更为有利.如果您确实需要持续更新位置,请参见如何在 Windows Phone 8 中持续跟踪手机位置. 重要说明: 您必须在您的应用清单文件中包含

javascript中获取容器对象(div)位置信息

例  代码如下 复制代码 function CPos(x, y) {  this.x = x;  this.y = y; } function getObjPos(obj)//获取控件的位置 {  var target = obj;  var pos = new CPos(target.offsetLeft,target.offsetTop);  var target = target.offsetParent;  while (target)  {   pos.x += target.offs

在RowCommand事件中获取索引值示例代码_实用技巧

在RowCommand事件中获取索引值 1.利用e.CommandSource 复制代码 代码如下: protected void lpg_RowCommand(object sender, GridViewCommandEventArgs e) { if (e.CommandName == "ItemCollect") { GridViewRow gvr = (GridViewRow)(((LinkButton)(e.CommandSource)).NamingContainer);

ThinkPHP中FCKeditor编辑器的使用方法_网页编辑器

而且可以用直接上传和ajax两种方式处理内容.为了给一些还没能成功地集成fckeditor的同侪们一些启发与帮助, 兹将我的经验与体会描述如下:应用目的:将FCKeditor编辑器集成到Thinkphp中,使用户能够在线像编辑Word一样处理即将发表的文字与图像. 应用软件与环境:apache服务器2.0以上版本,PHP版本5.0以上,mysql5.0以上:Thinkphp版本1.5或以上,Fckeditor版本2.x. 应用步骤: 1.下载FCKeditor2.x版本,将解压后的文件夹FCKe