- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
这里发生了有趣的事件。我将一个外部应用程序放在一起,该应用程序可以正常加载网页。但是,当我建立 CKEDITOR 的实例时,它会中断。 Chrome 报错:
Uncaught TypeError: undefined is not a function
请注意,未定义的错误返回到我的代码中的以下函数:
URL.createObjectURL();
无论如何,这就是我建立编辑器实例的方式。应该注意的是,如果我删除这段代码,我的 js 小程序可以正常工作。
jQuery(document).on("click", "#<?=$this->c_id;?>-launch-editor-<?php echo $this->section_num; ?>",
function(){
//contentEditor.html("");
contentEditor.hide();
jQuery(".editor").append('
<div class="content-top-container">
<div class="name">
<div class="section-title">
Title: <?php echo $this->section_title; ?>
</div>
<img id="close-<?=$this->c_id;?><?php echo $this->section_num; ?>"
class="editor" src="../skins/blues/images/red-ex.png"
title="Close" />
</div>
</div>
<textarea class="editor-area"
id="<?php echo $this->c_id; ?>-<?php echo $this->section_num; ?>-editor"
name="<?php echo $this->section_num; ?>-editor">
'+innerTextArea+'
</textarea>
');
contentEditor.fadeIn(1500);
CKEDITOR.replace('
<?php echo $this->c_id; ?>-<?php echo $this->section_num; ?>-editor',
{
toolbar : 'Full',
width : "1020px",
codeSnippet_theme: 'monokai_sublime'
});
CKEDITOR.on( 'instanceReady', function( ev )
{
alert("CKEditor is loaded");
});
});
这段代码是导致问题的原因......删除这段代码可以让其他一切正常工作:
CKEDITOR.replace('<?php echo $this->c_id; ?>-<?php echo $this->section_num; ?>-editor',
{
toolbar : 'Full',
width : "1020px",
codeSnippet_theme: 'monokai_sublime'
});
下面是我如何包含我的外部 js 文件。这是加载 ckeditor 时停止工作的原因:
</table>
<tr>
<td style="width: 55px;"></td>
<td style="width: 55px;"></td>
<td><?php echo $this->section_title; ?></td>
<td style="width: 125px; color: #0080ff;">
<form>
<div class="launch-content-editor"
id="<?=$this->c_id;?>-launch-editor-<?=$sectionNumber;?>"
title="Launch Content Editor"><?php echo $contentStatus; ?></div>
</form>
</td>
<td style="width: 125px; color: #0080ff;">
<form>
<div class="launch-content-recorder"
id="<?=$this->c_id;?>-launch-recorder-<?=$sectionNumber;?>"
title="Launch Content Recorder"><?php echo $recordAudio; ?></div>
</form>
</td>
</tr>
</table>
<div class="content-editor">
<div class="editor"></div>
<div class="content-bottom-container">
<section class="experiment">
<div class="inner" style="height: 5em;">
<audio id="audio" autoplay controls></audio>
<button class="recorder-btn" id="record-audio">Record</button>
<button class="recorder-btn" id="stop-recording-audio" disabled>Stop</button>
<h2 id="audio-url-preview"></h2>
</div>
</section>
</div>
</div>
<script src="/skins/js/recordermp3.js"></script>
<script src="/skins/js/RecordRTC.js"></script>
最佳答案
在我看来,您的问题可能是由使用 php 注入(inject)您的内容 ID 引起的。没有你所有的代码来试验,我将继续你想要的东西......这似乎是“在你的表中,当点击启动内容编辑器链接时,那一行的内容被加载进入编辑器。”由于您的 PHP 已经为每一行设置了 ID 值,因此无需将它们包含在您的 javascript 中,因为您可以从被单击的表行中检索它们。您可以像这样在行中使用 HTML5 数据字段来省去一些麻烦:
<td><?php echo $this->section_title; ?></td>
<td style="width: 125px; color: #0080ff;">
<form>
<div class="launch-content-editor"
data-cid="<?=$this->c_id;?>"
data-section-num="<?=$sectionNumber;?>"
data-section-title="<?php echo $this->section_title; ?>"
id="<?=$this->c_id;?>-launch-editor-<?=$sectionNumber;?>"
title="Launch Content Editor"><?php echo $contentStatus; ?></div>
</form>
</td>
然后您可以在 JavaScript 中使用这些数据字段,而不必让 PHP 将它们注入(inject)脚本:
$(document).on("click", ".launch-content-editor", function(e){
var launcher = $(e.target);
var sectionTitle = launcher.data('section-title');
var cId = launcher.data('cid');
var sectionNum = launcher.data('section-num');
var editorTextAreaId = cId + '-' + sectionNum + '-editor';
var innerTextArea = $('#' + cId + '-launch-editor-' + sectionNum).html();
var newEditor = $('<div><div class="content-top-container"><div class="name"><div class="section-title">Title: ' + sectionTitle + '</div><img id="close-' + cId + sectionNum + '" class="editor" src="../skins/blues/images/red-ex.png" title="Close" /></div></div><textarea class="editor-area" id="' + editorTextAreaId + '" name="' + sectionNum + '-editor">' + innerTextArea + '</textarea></div>');
$('.editor').append(newEditor);
CKEDITOR.replace(editorTextAreaId, {
toolbar : 'Full',
width : "1020px",
codeSnippet_theme: 'monokai_sublime'
});
});
$(document).ready(function() {
CKEDITOR.on( 'instanceReady', function( ev ){
alert("CKEditor is loaded");
});
});
此外,您应该在调用替换之前设置 CKEDITOR.on() 调用,否则编辑器可能会在您注册 instanceReady 回调之前加载。
这是 fiddle :http://jsfiddle.net/ot6tkgdp/4/
关于javascript - CKEditor 破坏了我的其他 js 应用程序,如何加载我自己的 js 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26085305/
今天我在一个 Java 应用程序中看到了几种不同的加载文件的方法。 文件:/ 文件:// 文件:/// 这三个 URL 开头有什么区别?使用它们的首选方式是什么? 非常感谢 斯特凡 最佳答案 file
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引起辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the he
我有一个 javascript 文件,并且在该方法中有一个“测试”方法,我喜欢调用 C# 函数。 c# 函数与 javascript 文件不在同一文件中。 它位于 .cs 文件中。那么我该如何管理 j
需要检查我使用的文件/目录的权限 //filePath = path of file/directory access denied by user ( in windows ) File fil
我在一个目录中有很多 java 文件,我想在我的 Intellij 项目中使用它。但是我不想每次开始一个新项目时都将 java 文件复制到我的项目中。 我知道我可以在 Visual Studio 和
已关闭。此问题不符合Stack Overflow guidelines 。目前不接受答案。 这个问题似乎不是关于 a specific programming problem, a software
我有 3 个组件的 Twig 文件: 文件 1: {# content-here #} 文件 2: {{ title-here }} {# content-here #}
我得到了 mod_ldap.c 和 mod_authnz_ldap.c 文件。我需要使用 Linux 命令的 mod_ldap.so 和 mod_authnz_ldap.so 文件。 最佳答案 从 c
我想使用PIE在我的项目中使用 IE7。 但是我不明白的是,我只能在网络服务器上使用 .htc 文件吗? 我可以在没有网络服务器的情况下通过浏览器加载的本地页面中使用它吗? 我在 PIE 的文档中看到
我在 CI 管道中考虑这一点,我应该首先构建和测试我的应用程序,结果应该是一个 docker 镜像。 我想知道使用构建环境在构建服务器上构建然后运行测试是否更常见。也许为此使用构建脚本。最后只需将 j
using namespace std; struct WebSites { string siteName; int rank; string getSiteName() {
我是 Linux 新手,目前正在尝试使用 ginkgo USB-CAN 接口(interface) 的 API 编程功能。为了使用 C++ 对 API 进行编程,他们提供了库文件,其中包含三个带有 .
我刚学C语言,在实现一个程序时遇到了问题将 test.txt 文件作为程序的输入。 test.txt 文件的内容是: 1 30 30 40 50 60 2 40 30 50 60 60 3 30 20
如何连接两个tcpdump文件,使一个流量在文件中出现一个接一个?具体来说,我想“乘以”一个 tcpdump 文件,这样所有的 session 将一个接一个地按顺序重复几次。 最佳答案 mergeca
我有一个名为 input.MP4 的文件,它已损坏。它来自闭路电视摄像机。我什么都试过了,ffmpeg , VLC 转换,没有运气。但是,我使用了 mediainfo和 exiftool并提取以下信息
我想做什么? 我想提取 ISO 文件并编辑其中的文件,然后将其重新打包回 ISO 文件。 (正如你已经读过的) 我为什么要这样做? 我想开始修改 PSP ISO,为此我必须使用游戏资源、 Assets
给定一个 gzip 文件 Z,如果我将其解压缩为 Z',有什么办法可以重新压缩它以恢复完全相同的 gzip 文件 Z?在粗略阅读了 DEFLATE 格式后,我猜不会,因为任何给定的文件都可能在 DEF
我必须从数据库向我的邮件 ID 发送一封带有附件的邮件。 EXEC msdb.dbo.sp_send_dbmail @profile_name = 'Adventure Works Admin
我有一个大的 M4B 文件和一个 CUE 文件。我想将其拆分为多个 M4B 文件,或将其拆分为多个 MP3 文件(以前首选)。 我想在命令行中执行此操作(OS X,但如果需要可以使用 Linux),而
快速提问。我有一个没有实现文件的类的项目。 然后在 AppDelegate 我有: #import "AppDelegate.h" #import "SomeClass.h" @interface A
我是一名优秀的程序员,十分优秀!