- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 Bootstrap 用 JavaScript 编写一个 Web 应用程序。它动态创建几个文本区域,我想将它们转换为 CKEditors。但是,仅创建了 CKEditor 的一个实例,第二个“替换”给出“未捕获的类型错误:无法读取 null 的属性“不可选择””。创建它们的代码非常简单:
var editor = CKEDITOR.replace(id);
editor.on('change', function (evt) {
element.value = editor.getData();
});
文本区域是与某些模板中的某些表单一起创建的。
<form class="form-horizontal" method="POST" id="[%id%]-form" name="[%id%]-form">
<div class="form-group">
<label for="[%id%]-input-name" class="col-md-2 control-label">Name:</label>
<div class="col-md-4">
<input type="text" size="30" class="form-control" id="[%id%]-input-name" name="projectname" readonly="readonly" value="[%state.defined.projectname%]"/>
</div>
<label for="[%id%]-input-name" class="col-md-2 control-label">Version:</label>
<div class="col-md-4">
<input type="text" size="30" class="form-control" id="[%id%]-input-version" name="version" readonly="readonly" value="[%state.defined.version%]"/>
</div>
</div>
<div class="form-group">
<label for="[%id%]-input-title" class="col-md-2 control-label">Title:</label>
<div class="col-md-10">
<input type="text" required="required" class="form-control" id="[%id%]-input-title" name="projecttitle" placeholder="Project title" value="[%state.defined.title%]"/>
</div>
</div>
<div class="form-group">
<label for="[%id%]-input-desc" class="col-md-2 control-label">Description:</label>
<div class="col-md-10">
<textarea rows="3" class="form-control" id="[%id%]-input-desc" name="description" placeholder="Project description">
[%state.defined.description%]
</textarea>
</div>
</div>
. . .
和
<form class="form-horizontal" method="POST" id="[%id%]-form" name="[%id%]-form">
<div class="form-group">
<label for="[%id%]-input-title" class="col-md-2 control-label">Topic:</label>
<div class="col-md-10">
<input type="text" required="required" class="form-control" id="[%id%]-input-title" name="title" placeholder="Thread title"/>
</div>
</div>
<div class="form-group">
<label for="[%id%]-input-text" class="col-md-2 control-label">Text:</label>
<div class="col-md-10">
<textarea rows="3" class="form-control" id="[%id%]-input-text" name="text" placeholder="Text to post">
</textarea>
</div>
</div>
<div class="form-group">
<div class="col-md-3">
<input type="hidden" name="forumid" value="[%state.forumid%]"/>
<input type="submit" class="btn btn-primary" id="[%id%]-post" value="Post"/>
</div>
</div>
</form>
然后使用innerHTML 属性将生成的HTML 插入到某个区域。我忘了提到该区域是可折叠的(即具有 Bootstrap 的“折叠”类)。一切正常,除了第二个文本区域没有被替换。
还有一件事:异常不是发生在“replace”中,而是稍后发生。这是堆栈跟踪:
b (ckeditor.js:326)
(anonymous function) (ckeditor.js:322)
j (ckeditor.js:10)
CKEDITOR.event.CKEDITOR.event.fire (ckeditor.js:12)
CKEDITOR.editor.CKEDITOR.editor.fire (ckeditor.js:13)
CKEDITOR.event.CKEDITOR.event.fireOnce (ckeditor.js:12)
CKEDITOR.editor.CKEDITOR.editor.fireOnce (ckeditor.js:13)
(anonymous function) (ckeditor.js:246)
CKEDITOR.scriptLoader.load.g (ckeditor.js:226)
CKEDITOR.scriptLoader.load (ckeditor.js:226)
(anonymous function) (ckeditor.js:245)
(anonymous function) (ckeditor.js:233)
(anonymous function) (ckeditor.js:231)
CKEDITOR.scriptLoader.load.g (ckeditor.js:226)
CKEDITOR.scriptLoader.load (ckeditor.js:226)
CKEDITOR.resourceManager.load (ckeditor.js:231)
h (ckeditor.js:232)
(anonymous function) (ckeditor.js:233)
g (ckeditor.js:244)
(anonymous function) (ckeditor.js:243)
(anonymous function) (ckeditor.js:468)
(anonymous function) (ckeditor.js:231)
CKEDITOR.scriptLoader.load.g (ckeditor.js:226)
CKEDITOR.scriptLoader.load.B (ckeditor.js:226)
CKEDITOR.scriptLoader.load.s (ckeditor.js:226)
(anonymous function) (ckeditor.js:227)
我做错了什么?
PS。我发现了一些东西。首先,表单 #2 是在表单 #1 之后创建的,这并不重要;即使我省略了第一个表单的创建,问题仍然存在。其次,它们之间的区别在于它们在 DOM 中的定位方式;第二种形式有更深的嵌套,它位于多个嵌套的 div 内。当我把它放在顶层时,它就起作用了。我的问题:CKEditor 可以创建的嵌套层数有限制吗?到目前为止,我还没有看到任何有问题的组件。最佳答案
我也在动态创建 CKEditor 实例,但我使用的是 CKEditor 的 Jquery 适配器,它位于适配器文件夹的 CKEditor 文件夹内。
我的代码是这样的:
var data = { id: 'some-random-id' , content: '<p>Initial Text Content</p>'};
var $element = $('#'+data.id);
$element.on('blur', function(){
data.content = CKEDITOR.instances[data.id].getData();
}
//Create CKEditor instance
$element.ckeditor(function () {
//Some Stuffs that my code does when ckeditor is created
});
我的 mustache 模板是这样的:
<script id="txt" type="text/html">
<div id="{{id}}" contenteditable="true" >
{{& content}}
</div>
</script>
正常的 HTML 应该是这样的:
<div id="some-random-id" contenteditable="true" >
<p>Initial text content</p>
</div>
要将其从页面中删除,您必须使用 ckeditor destroy 进行销毁。
CKEDITOR.instances[data.id].destroy();
关于javascript - 我只能为每个网页创建一个 CKEditor,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31980919/
这个问题与窗口处理或多个浏览器窗口的杂耍无关,而是关于在同一窗口中浏览 Web 应用程序的网页。我遇到这样的情况 1.我导航为屏幕 A->屏幕 x->屏幕 Y->屏幕 B 2.我需要捕获首次登录时屏幕
我有这个要求: The system will record the length of time the user displayed each page. 虽然在富客户端应用程序中微不足道,但我不
我在调试 JavaScript 网页时遇到问题。我遇到困难的地方是我标记 (...) 的地方。我收到未定义的错误。我是否将函数 countDown(start, Increment) 中的参数(即 s
需要一些帮助。我刚开始学习 HTML,今天一直在研究如何制作菜单,但在这样做时遇到了问题。 我似乎不知道如何在屏幕上居中显示菜单。 这就是我目前所拥有的; Home
我想通过单击按钮将小程序的任何参数发送到浏览器。 (HTML)。我知道按钮对象有一些方法,但不知道使用哪个。我怎样才能做到这一点?ps .: 我使用的是 jnlp 协议(protocol)。 类似于:
我应该使用Wikipedia的文章链接数据转储从组织的网站中提取代表性术语。 为此,我已经- 抓取并下载了该组织的网页。 (〜110,000) 创建了Wikipedia ID和术语/标题的字典。 (约
我的网页中包含 javascript 函数... function callFromAndroid(varName) { alert("call from android activated by
我想创建一个 Java 应用程序,允许用户导入网页并能够在程序中对其进行编辑。 导入网页将对其进行渲染,并且页面的组件(图像、文本等)将是可编辑或可拖动的,从而允许用户重新布局组件。 例如,用户可以加
当我们按下按钮时,我向 JFrame 添加了一个网页(网页在同一框架中打开)。效果很好。但我想向其中添加一个scrollPane,但是当我添加 JScrollPane jsp = new JScrol
我在使用 particles.js 时无法将图像居中。图像居中,但略微偏离中心。为什么要这样做,我如何才能将它居中? html particles.js demo CSS
我正在尝试在加载页面时播放音频,它应该非常简单但我无法完成。 问题是它没有播放,我尝试检查自动播放的状态(真/假),它说它在页面加载时播放,尽管它没有播放,还尝试制作一个将改变自动播放的功能状态为
我正在尝试显示用户从列表中选择的图像,但我在屏幕上看不到任何内容。 .container { position: relative; } .ce
这听起来有点奇怪,但我需要一些帮助,网页必须有一行必须包含三个部分,第一部分必须有 1 列的偏移量,并且部分之间的空间必须是 10px到目前为止,使用 Bootstrap 一切顺利。 现在第二行将有
这个问题在这里已经有了答案: Web and physical units (2 个答案) Div width in cm (inch) (6 个答案) 关闭 9 年前。
这个问题不太可能帮助任何 future 的访问者;它只与一个小的地理区域、一个特定的时间点或一个非常狭窄的情况有关,这些情况并不普遍适用于互联网的全局受众。为了帮助使这个问题更广泛地适用,visit
我想将我的 IPython 笔记本的宽度设置为 2500 像素,并且我希望它左对齐。我该怎么做? 我使用这段代码来应用我自己的 CSS: from IPython.core.display impor
关闭。这个问题需要更多focused .它目前不接受答案。 想改进这个问题吗? 更新问题,使其只关注一个问题 editing this post . 关闭 7 年前。 Improve this q
我在 Word 中制作了一份文档,希望人们在其中添加自己的姓名以及他们的教学经验。我已将其保存为网页并发布到此处: http://epicforum.net/TS ...但操作部分实际上就是这样: h
这个问题在这里已经有了答案: Execute JS code after pressing the spacebar (5 个答案) 关闭 4 年前。
我正在开发一个只有两个页面的网站。 1.登录 2.首页 我正在使用 Angular 框架。 app.config(['$routeProvider', function ($routeProvider
我是一名优秀的程序员,十分优秀!