如何在iFrame中包含CSS和JavaScript

iframe中不考虑我的css和javascript。 例如,我有这个iframe:

<iframe name="richTextField" id="richTextField"/>

在页面加载后我在哪里注入.css文件:

$(document).ready(iFrameOn);

function iFrameOn() {
    richTextField.document.designMode = "On";
    richTextField.document.head.innerHTML = '<link rel="stylesheet" type="text/css" href="iframe.css">';
}

在chrome中,我的iframe的头部将包含我的样式表,但它不会有任何效果,即使它甚至不包括在内。

无论如何,我注意到,警报不适用于jsfiddle,而它适用于其他用户。 以此代码为例。 在Chrome上没有提示对话框。 我认为这可能是相关的。 任何想法为什么会发生?

链接地址: http://www.djcxy.com/p/89951.html

上一篇: how to include css and javascript in iFrame

下一篇: How to create an HTML page dynamically in JavaScript