javascript 将样式表附加到iframe内容(例如Twitter小部件) - 这很脏,但是当没有其他选项可用时它很有效。
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript 将样式表附加到iframe内容(例如Twitter小部件) - 这很脏,但是当没有其他选项可用时它很有效。相关的知识,希望对你有一定的参考价值。
$(document).ready(function(){
setTimeout(function() {
var iframe = document.getElementsByTagName('iframe')[0],
iframeDoc = iframe.contentWindow.document;
var otherhead = iframeDoc.getElementsByTagName("head")[0];
var css = document.createElement("link");
css.type = "text/css";
css.rel = "stylesheet";
css.href = "/SiteElements/Stylesheets/twitter-widget.css";
otherhead.appendChild(css);
}, 500);
});
以上是关于javascript 将样式表附加到iframe内容(例如Twitter小部件) - 这很脏,但是当没有其他选项可用时它很有效。的主要内容,如果未能解决你的问题,请参考以下文章
无法在 Internet Explorer 中将样式表添加到 iframe
尝试使用 JavaScript 将 css 样式添加到 iframe
将事件处理程序附加到在IFrame中呈现的HTML
JavaScript 附加样式表的故障安全负载
将清除后的 tailwindcss 加载到 iFrame
我知道网页可以拥有的样式表的数量是有限制的,但是附加的 javascript 文件呢?