gpt4 book ai didi

Javascript Ckeditor 获取鼠标点击位置

转载 作者:行者123 更新时间:2023-11-28 19:44:40 25 4
gpt4 key购买 nike

我正在使用 Ckeditor

查看:

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="~/Content/ckeditor/ckeditor.js"></script>


<input id="insertPattern" type="button" value="insert pattern" />

@Html.TextArea("editor", new { @class = "ckeditor", id = "aboutme" })

Javascript:

$(function () {

$('input#insertPattern').click(function () {

var txtarea = document.getElementById("aboutme");
var selection = txtarea.getSelection().getStartElement().getOuterHtml();

alert(selection);


}});

如果我点击按钮,我无法在 Ckeditor 的 Html.TextArea 中提醒鼠标点击的选择次数。

错误:

在这部分javascript代码

var selection = txtarea.getSelection().getStartElement().getOuterHtml();

我收到以下错误,

未定义的类型错误不是函数

我想念哪里?我如何获得鼠标点击的选择?

最佳答案

您没有与编辑一起工作

CKEDITOR.instances["editorID"].getSelection().getStartElement().getOuterHtml();

根据您的评论,您想使用

http://docs.ckeditor.com/#!/api/CKEDITOR.editor-method-insertHtml

关于Javascript Ckeditor 获取鼠标点击位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24510628/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com