- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
考虑这个 JS 代码。它基本上初始化一个 CKEditor 实例,等待 1 秒,然后运行 codeToDebug
function codeToDebug(){
setNodeListProp("attr", function customAttr(name, val){
if(typeof val != "undefined"){
this.setAttribute(name, val);
return this;
}
else return this.getAttribute(name);
});
// secondary check: all elements on the current document HAVE `attr` method
var all = document.querySelectorAll("*");
for(var i = 0, len = all.length;i < len; i++)
if(!all[i].attr) // always false
console.dir(all[i]); // never executes
// logs undefined
console.log(
document.querySelector(".cke_wysiwyg_frame")
.contentDocument
.querySelector(".cke_editable").attr);
}
window.onload = function(){
// Replace the <textarea id="editor1"> with a CKEditor
// instance, using default configuration.
CKEDITOR.editorConfig = function (config) {
config.language = 'es';
config.uiColor = '#F7B42C';
config.height = 300;
config.toolbarCanCollapse = true;
};
CKEDITOR.replace('editor1');
// wait for async editor to load
setTimeout(codeToDebug, 1000);
};
function setNodeListProp(prop, func){
// in case of custom created array of Nodes, Array.prototype is necessary
Array.prototype[prop] = NodeList.prototype[prop] = function() {
var args = [].slice.call(arguments, 0);
this.forEach(function(node) {
func.apply(node, args);
});
return this;
};
Node.prototype[prop] = func;
}
codeToDebug
方法扩展了 Node
的原型(prototype)和NodeList
使用方法attr
。然后log
如果 attr
出现在 .cke_editable
CKEditor 的 iframe 内的文本区域。令人惊讶的是,它记录了 undefined
.
<小时/>My questions:
- Why isn't the prototype of
Node
s inside an iframe extended, when I am extending it in the main document? (isn't a common globalNode
shared by all elements - regardless of where they are?)- What is the best way to extend DOM of all elements - which are present on the webpage document, in its iframes, and its further nested iframes?
注释:
我已经阅读过 Kangax 的有关扩展 DOM 的文章(以及 Prototype 的错误)。但我的用例完全不同。我只应该支持最新版本的 Chrome 和 Opera - 都是 Webkit - 因此我不担心冲突。因此,请放心,我已经考虑了扩展原型(prototype)的风险,但这个问题与此无关。
这是 HTML(由于某种原因 JSBin 或代码片段不会显示 CKEditor):<script src="https://cdn.ckeditor.com/4.5.1/standard/ckeditor.js"></script><script>..ABOVE_JS_CODE..</script><textarea name="editor1" id="editor1" rows="10" cols="80"></textarea>
(我本地创建了一个index.html
)
最佳答案
所以,我自己写了一个函数来解决这个问题。对于任何寻找类似解决方案的人来说可能都有好处。
(function protoExtensionWork(){
window.updateAllValuesPerWin = function(win){
for(var i = 0, count = protoExtensionNames.length; i < count; i++)
setNodeListPropPerWindow(protoExtensionNames[i], protoExtensionFunctions[i], win);
};
// fill this up as per your requirement
var protoExtensionNames = [], protoExtensionFunctions = [];
function setNodeListPropPerWindow(prop, func, win){
// in case of custom created array of Nodes, Array.prototype is necessary
win.Array.prototype[prop] = win.NodeList.prototype[prop] = function() {
var args = [].slice.call(arguments, 0);
this.forEach(function(node) {
func.apply(node, args);
});
return this;
};
win.Node.prototype[prop] = func;
}
})();
这是寻找 iframe
的第二段代码:
function initiateIframeCheck(parentDoc){
var iframes = parentDoc.querySelectorAll("iframe"),
win, doc;
iframes.forEach(function(iframe){
try{
doc = iframe.contentDocument;
win = iframe.contentWindow;
// make sure handler's not already attached
if(!doc[UNIQ_KEY]){
doc[UNIQ_KEY] = true;
updateAllValuesPerWin(win);
setInterval(initiateIframeCheck, IFRAME_CHECK_TIMER, doc);
}
}catch(e){ // CORS
//console.dir(e);
}
});
}
如果有人认为自己有更好、更合适的方法来完成此任务,请发表答案。
关于javascript - 在 iframe 内扩展 DOM 元素的原型(prototype),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42825990/
好吧,我怀疑这是一个独特的情况,所以要么有人这样做了,要么有人认为这是不可能的,至少以我所要求的方式。 我有 2 个原型(prototype)变量(函数),一个是父变量,另一个是助手。我想做的是从助手
这是 JavaScript 大师的问题。我正在尝试更优雅地使用 JavaScript 原型(prototype)模型。这是我的实用程序代码(它提供了真实的原型(prototype)链并正确使用 ins
我们知道在 JavaScript 中有一个用于数组的 .forEach() 方法。但是字符串没有内置该方法。 那么,下面的代码片段有没有问题:String.prototype.forEach = Ar
我们知道在 JavaScript 中有一个用于数组的 .forEach() 方法。但是字符串没有内置该方法。 那么,下面的代码片段有没有问题:String.prototype.forEach = Ar
我看到了两种不同的模式和解释。来自 DailyJS 和许多其他人的一篇:矩形.prototype = new Shape(); 然后是 Crockford 的 here 这意味着只是 矩形.proto
尝试在 Object.prototype 以及 String.prototype 和 Number.prototype 上定义一个 hashCode 方法>。我正在使用以下方法定义原型(prototy
在本教程中,您将借助示例了解 JavaScript 中的原型。 在学习原型之前,请务必查看以下教程: JavaScript 对象 JavaScript 构造函数 如您所知,您可以使用对象构造函
当构造新对象时,该对象被设置为委托(delegate)任何尚未显式设置为其构造函数原型(prototype)的属性。这意味着我们可以稍后更改原型(prototype),并且仍然可以看到实例中的更改。
我正在努力获得更好的 JavaScript 实用知识。所以,我买了 Douglas Crockford 的书“JavaScript the good parts”。 我现在很难掌握原型(prototy
我的理解是相同类型的所有对象将共享相同的原型(prototype)。因此对原型(prototype)的更改将反射(reflect)在每个对象上。但是值类型的属性似乎不是这样。这种属性是如何存储的? f
这个问题在这里已经有了答案: 关闭 12 年前。 Possible Duplicate: JavaScript: Class.method vs. Class.prototype.method 创建
为什么在 MDN 函数中 polyfills 使用“if (!Array.prototype.filter)”? if (!Array.prototype.filter) { Array.prot
这个问题已经有答案了: Assigning prototype methods *inside* the constructor function - why not? (6 个回答) 已关闭 7 年
关闭。这个问题需要更多focused .它目前不接受答案。 想改进这个问题吗? 更新问题,使其只关注一个问题 editing this post . 关闭 9 年前。 Improve this qu
面向对象有一个特征是继承,即重用某个已有类的代码,在其基础上建立新的类,而无需重新编写对应的属性和方法,继承之后拿来即用; 。 在其他的面向对象编程语言比如Java中,通常是指,子类继承父类的属性和
OOP 中原型(prototype)设计模式最重要的部分之一是我们不会从头开始创建新对象,我们只是使用 clone() 函数从现有对象克隆它们。 那么clone()函数是深拷贝还是浅拷贝? 如果它是一
在进行原型(prototype)设计时,您在多大程度上放弃了最佳实践来支持代码和修复黑客攻击?当然,代码并不打算在完整的生产环境中保留。 补充:我正在研究一个用 Python 制作的相当大的半工作原型
我开始学习设计模式。我知道原型(prototype)是用来制作我已经拥有的对象的精确副本,而享元是用来制作类似的对象。 我已经编写了 2D 平台游戏,例如马里奥(Java)。有很多相同的敌人,唯一的区
我正在使用 Maven 生成原型(prototype)。我能够使原型(prototype)生成正常,并且它生成的项目模板按预期工作。唯一的问题是在我的 shell 脚本中。脚本中注释掉的任何内容都会被
我想用 primefaces 配置一个 Java EE 项目。我在某处读到可以使用 mvn arechetype:generate 创建项目结构。当我使用它时,我只看到了 41 个选项,而在该教程中,
我是一名优秀的程序员,十分优秀!