【发布时间】:2016-11-02 07:26:11
【问题描述】:
我想创建一个带有角度指令的富文本编辑器。 designMode Attr 在 Chrome、Opera 和其他 chrome 基础浏览器中运行良好,但在 FireFox 中无法运行,这里有一个plunker 来看看:
https://plnkr.co/edit/Ow6BxOAneLsNjkyZmGiy
但是当浏览器加载时,我们可以在 firefox 控制台中将 designMode 设置为 on:
document.getElementById('richtextfield').contentDocument.designMode = 'on';
我们可以轻松地将 iframe 上的 angular 指令记录到 firefox 控制台:
console.log( element.find( 'iframe' )[0] );
为什么会这样??
【问题讨论】:
标签: angularjs firefox iframe angularjs-directive rich-text-editor