自定义css到iframe的工作示例

时间:2012-03-23 12:07:02

标签: javascript html css iframe facebook-iframe

我见过这个问题 http://phpforum.ru/html/counter/counter.php?link=https://stackoverflow.com/questions/217776/how-to-apply-css-to-iframe

我试图听从他们听到的建议,但我无法完成工作草案。

例如代码:

var cssLink = document.createElement("link") 
cssLink.href = "style.css"; 
cssLink .rel = "stylesheet"; 
cssLink .type = "text/css"; 
frames['frame1'].document.body.appendChild(cssLink);

Google Chrome发誓:

不安全的JavaScript尝试使用URL访问框架...域,协议和端口必须匹配。

我该怎么办?是否没有跨浏览器自定义iframe的解决方案?

0 个答案:

没有答案